* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

button:focus {
    outline: none;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #0a0e27;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.minimal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10,14,39,0.7), rgba(26,31,58,0.7)), url(bg.jpg) center / cover no-repeat;
    z-index: 0;
}

.minimal-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0,212,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,212,255,0.1) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.header {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 80px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.branding {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    box-shadow: 0 0 30px rgba(0,212,255,0.5);
}

.logo-text-main {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #fff;
}

.logo-text-accent {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #00d4ff;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.language-control {
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,0.05);
    padding: 3px;
    border-radius: 8px;
}

.lang-switch {
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.lang-switch:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.lang-switch.active {
    background: #00d4ff;
    color: #0a0e27;
    font-weight: 700;
}

.main-navigation {
    display: flex;
    gap: 35px;
    align-items: center;
}

.country-flag {
    font-size: 24px;
    margin-left: 10px;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.main {
    padding-bottom: 100px;
}

.hero-minimal {
    text-align: center;
    padding: 80px 0;
    margin-bottom: 120px;
}

.hero-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.indicator-line {
    width: 60px;
    height: 1px;
    background: #00d4ff;
}

.indicator-text {
    font-size: 12px;
    letter-spacing: 4px;
    color: #00d4ff;
    font-weight: 600;
}

.hero-main-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-break {
    display: block;
}

.hero-subtitle-text {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.metric-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 2px;
    transition: width 1s ease;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.metric-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-main {
    padding: 18px 45px;
    background: #00d4ff;
    color: #0a0e27;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.action-main:hover {
    background: transparent;
    color: #00d4ff;
    transform: translateY(-2px);
}

.action-secondary {
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

.data-visualization {
    margin-bottom: 120px;
}

.section-heading {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    color: #fff;
}

.visualization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.viz-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.viz-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-5px);
}

.viz-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.viz-icon {
    font-size: 32px;
}

.viz-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.viz-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.big-number {
    font-size: 56px;
    font-weight: 300;
    color: #00d4ff;
    letter-spacing: -2px;
}

.viz-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.viz-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.detail-value {
    font-weight: 700;
    color: #00d4ff;
}

.viz-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.viz-link:hover {
    color: #fff;
    padding-left: 5px;
}

.sports-breakdown {
    margin-bottom: 120px;
}

.breakdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.breakdown-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0,212,255,0.3);
}

.breakdown-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.breakdown-icon {
    font-size: 40px;
}

.breakdown-info {
    flex: 1;
}

.breakdown-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.breakdown-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.breakdown-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-name {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-visual {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.stat-num {
    font-size: 18px;
    font-weight: 700;
    color: #00d4ff;
    min-width: 60px;
    text-align: right;
}

.breakdown-action {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #00d4ff;
    text-decoration: none;
    text-align: center;
    border: 2px solid #00d4ff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.breakdown-action:hover {
    background: #00d4ff;
    color: #0a0e27;
}

.features-minimal {
    margin-bottom: 120px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0,212,255,0.3);
}

.feature-number {
    font-size: 48px;
    font-weight: 300;
    color: rgba(255,255,255,0.2);
    line-height: 1;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-heading {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.feature-description {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.feature-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.spec-item {
    padding: 6px 15px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.feature-link:hover {
    color: #fff;
    padding-left: 5px;
}

.performance-metrics {
    margin-bottom: 120px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.metric-card {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(0,212,255,0.3);
    transform: translateY(-5px);
}

.metric-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.metric-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.circle-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: #00d4ff;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 300;
    color: #00d4ff;
}

.metric-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.cta-minimal {
    margin-bottom: 100px;
}

.cta-wrapper {
    text-align: center;
    padding: 80px 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.cta-heading {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #fff;
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    padding: 20px 50px;
    background: #00d4ff;
    color: #0a0e27;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-primary:hover {
    background: transparent;
    color: #00d4ff;
    transform: translateY(-2px);
}

.cta-button-secondary {
    padding: 20px 50px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

.footer-minimal {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-item {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-item:hover {
    color: #fff;
    padding-left: 5px;
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 42px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .visualization-grid {
        grid-template-columns: 1fr;
    }
    
    .breakdown-container {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-number {
        font-size: 36px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-navigation {
    display: flex;
    gap: 35px;
    align-items: center;
}

.country-flag {
    font-size: 24px;
    margin-left: 10px;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #0a0e27;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0,212,255,0.2);
    color: #00d4ff;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.modal-header p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid rgba(0,212,255,0.2);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
    background: rgba(255,255,255,0.08);
}

.register-submit-btn {
    padding: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #0a0e27;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,212,255,0.4);
}
