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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #303948;
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.iceberg {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: 
        radial-gradient(circle at 20% 30%, rgba(60, 190, 242, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(60, 190, 242, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #1a1f2e 0%, #303948 100%);
}

.ice-layer.surface {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    width: 100%;
    max-width: 1200px;
    padding: clamp(1.5rem, 4vw, 3rem);
    position: relative;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.ice-layer.surface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.4), 
        transparent);
}

.header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    position: relative;
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.3), 
        rgba(60, 190, 242, 0.6), 
        rgba(60, 190, 242, 0.3), 
        transparent);
}

.logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.logo img {
    filter: brightness(2) drop-shadow(0 0 12px rgba(60, 190, 242, 0.4));
    opacity: 0.95;
    transition: all 0.3s ease;
    transform-origin: center;
}

.logo:hover img {
    filter: invert(1) brightness(2) drop-shadow(0 0 16px rgba(60, 190, 242, 0.6));
    transform: scale(1.02);
}

.title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 350;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #3cbef2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    font-size: clamp(0.85rem, 2vw, 1rem);
    opacity: 0.7;
    letter-spacing: 0.3em;
    margin-top: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
}

.crack-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.crack {
    position: relative;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    padding: clamp(1.5rem, 3vw, 1.8rem);
    min-height: 260px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.crack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        #3cbef2, 
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.crack:hover {
    background: linear-gradient(145deg, 
        rgba(60, 190, 242, 0.05) 0%,
        rgba(60, 190, 242, 0.02) 100%);
    border-color: rgba(60, 190, 242, 0.2);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.03);
}

.crack:hover::before {
    opacity: 1;
}

.crack-label {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #3cbef2;
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.crack-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(60, 190, 242, 0.5);
}

.crack-content p {
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.deep-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.15) 0%,
        rgba(60, 190, 242, 0.05) 100%);
    border-left: 3px solid rgba(60, 190, 242, 0.4);
    position: relative;
}

.deep-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.2), 
        transparent);
}

.content-column h2 {
    font-size: 1.3rem;
    color: #3cbef2;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.content-column h3 {
    font-size: 1rem;
    color: #FFFFFF;
    margin: 1.2rem 0 0.6rem;
    opacity: 0.9;
    font-weight: 400;
}

.content-column p {
    margin-bottom: 0.9rem;
    opacity: 0.8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.depth-block {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(145deg, 
        rgba(60, 190, 242, 0.06) 0%,
        rgba(60, 190, 242, 0.02) 100%);
    border: 1px solid rgba(60, 190, 242, 0.12);
    position: relative;
    overflow: hidden;
}

.depth-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(60, 190, 242, 0.05) 0%, 
        transparent 70%);
    animation: pulse 8s infinite linear;
}

@keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.depth-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    font-weight: 350;
}

.depth-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.6), 
        transparent);
}

.bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.8rem 0;
    position: relative;
    z-index: 1;
}

.bubble {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: min(300px, 100%);
    backdrop-filter: blur(4px);
}

.bubble::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(60, 190, 242, 0.1), 
        transparent);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.bubble:hover {
    background: linear-gradient(145deg, 
        rgba(60, 190, 242, 0.1) 0%,
        rgba(60, 190, 242, 0.05) 100%);
    border-color: rgba(60, 190, 242, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(60, 190, 242, 0.1);
}

.bubble:hover::before {
    opacity: 1;
}

.bubble-link {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    color: #FFFFFF;
    word-break: break-all;
    letter-spacing: 0.02em;
    line-height: 1.4;
    opacity: 0.9;
}

.mirror-note {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1.2rem;
    font-style: normal;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.iceberg-base {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.15) 100%);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.iceberg-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.3), 
        transparent);
}

.iceberg-base h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 350;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.assessment-item {
    padding: 1.5rem;
    border: 1px solid;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    transition: all 0.3s ease;
}

.assessment-item.positive {
    border-color: rgba(60, 190, 242, 0.3);
}

.assessment-item.negative {
    border-color: rgba(255, 255, 255, 0.1);
}

.assessment-item:hover {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.assessment-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #3cbef2;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.assessment-item ul {
    list-style: none;
    padding-left: 0;
}

.assessment-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}

.assessment-item li::before {
    content: '⟩';
    position: absolute;
    left: 0;
    color: #3cbef2;
    opacity: 0.7;
    font-weight: bold;
}

.assessment-item li:last-child {
    border-bottom: none;
}

.conclusion {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.015) 0%,
        rgba(255, 255, 255, 0.005) 100%);
    border-left: 3px solid rgba(60, 190, 242, 0.5);
}

.conclusion h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.conclusion p {
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.92rem;
}

.footer {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .iceberg {
        padding: 1rem;
    }
    
    .ice-layer.surface {
        padding: 1.5rem;
    }
    
    .crack-panel,
    .deep-content,
    .assessment-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .crack {
        min-height: auto;
    }
    
    .bubble {
        min-width: 100%;
        padding: 0.9rem 1.2rem;
    }
    
    .bubble-link {
        font-size: 0.8rem;
    }
    
    .title {
        letter-spacing: 0.1em;
    }
    
    .subtitle {
        letter-spacing: 0.2em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .depth-block::before {
        animation: none;
    }
}

.site-navigation {
    margin: 2rem 0 3rem;
    position: relative;
}

.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3cbef2;
    border-color: rgba(60, 190, 242, 0.3);
    background: rgba(60, 190, 242, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #3cbef2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.technical-specs {
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.2) 0%, rgba(60, 190, 242, 0.08) 100%);
    border: 1px solid rgba(60, 190, 242, 0.15);
    margin: 3rem 0;
    border-radius: 2px;
}

.technical-specs h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 350;
    position: relative;
}

.technical-specs h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #3cbef2;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.spec-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(60, 190, 242, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(60, 190, 242, 0.05);
    border-color: rgba(60, 190, 242, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.spec-item h3 {
    font-size: 1.1rem;
    color: #3cbef2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.spec-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.comparative-analysis {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-left: 4px solid rgba(60, 190, 242, 0.4);
    margin: 2.5rem 0;
}

.comparative-analysis h2 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 350;
}

.analysis-content p {
    margin-bottom: 1.2rem;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-breakdown {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin: 3rem 0;
    border-radius: 2px;
}

.feature-breakdown h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 350;
    position: relative;
}

.feature-breakdown h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #3cbef2;
}

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

.feature-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(60, 190, 242, 0.04);
    border-color: rgba(60, 190, 242, 0.2);
}

.feature-item h3 {
    font-size: 1rem;
    color: #3cbef2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
}

.feature-item li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.feature-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3cbef2;
    opacity: 0.7;
}

.legal-disclaimer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2.5rem 0;
    border-radius: 2px;
}

.legal-disclaimer h2 {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 350;
    text-align: center;
}

.legal-disclaimer p {
    margin-bottom: 1.2rem;
    opacity: 0.7;
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: justify;
}

.footer-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3cbef2;
}

.assessment-item li {
    padding: 0.5rem 0 0.5rem 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}

.assessment-item li::before {
    content: '⟩';
    position: absolute;
    left: 0;
    color: #3cbef2;
    opacity: 0.7;
    font-weight: bold;
}

.assessment-item.positive li {
    border-bottom-color: rgba(60, 190, 242, 0.1);
}

.assessment-item.negative li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.conclusion h4 {
    font-size: 1.1rem;
    color: #3cbef2;
    margin: 1.5rem 0 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.7rem;
    }
    
    .technical-specs,
    .feature-breakdown,
    .legal-disclaimer {
        padding: 1.5rem;
    }
    
    .specs-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .footer-link {
        margin: 0.2rem;
    }
}

@media (max-width: 480px) {
    .technical-specs h2,
    .feature-breakdown h2 {
        font-size: 1.3rem;
    }
    
    .comparative-analysis,
    .legal-disclaimer {
        padding: 1.2rem;
    }
    
    .assessment-grid {
        gap: 1rem;
    }
    
    .assessment-item {
        padding: 1.2rem;
    }
}

.market-overview {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(60, 190, 242, 0.04) 100%);
    border: 1px solid rgba(60, 190, 242, 0.1);
    margin: 2rem 0;
    border-radius: 2px;
}

.market-overview h2 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 350;
}

.market-overview h3 {
    font-size: 1.2rem;
    color: #3cbef2;
    margin: 1.5rem 0 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.market-overview p {
    margin-bottom: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
}

.market-overview strong {
    color: #3cbef2;
    font-weight: 400;
}

.access-guide {
    padding: 2.5rem;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin: 3rem 0;
    border-radius: 2px;
}

.access-guide h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 350;
    position: relative;
}

.access-guide h2::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #3cbef2;
}

.access-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.step {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(60, 190, 242, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(60, 190, 242, 0.05);
    border-color: rgba(60, 190, 242, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.step h3 {
    font-size: 1.1rem;
    color: #3cbef2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.verification-section {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-left: 4px solid rgba(60, 190, 242, 0.4);
    margin: 2.5rem 0;
}

.verification-section h2 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 350;
}

.verification-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.method {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(60, 190, 242, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.method:hover {
    background: rgba(60, 190, 242, 0.05);
    border-color: rgba(60, 190, 242, 0.25);
}

.method h3 {
    font-size: 1.1rem;
    color: #3cbef2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.method p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.link-notes {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(60, 190, 242, 0.15);
    margin-top: 2rem;
    border-radius: 2px;
}

.link-notes h3 {
    font-size: 1.1rem;
    color: #3cbef2;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.link-notes p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.access-note {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .market-overview {
        padding: 1.5rem;
    }
    
    .access-guide {
        padding: 1.5rem;
    }
    
    .access-steps {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .verification-section {
        padding: 1.5rem;
    }
    
    .verification-methods {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .link-notes {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .market-overview h2 {
        font-size: 1.3rem;
    }
    
    .access-guide h2 {
        font-size: 1.4rem;
    }
    
    .verification-section h2 {
        font-size: 1.3rem;
    }
}