/* animated gradient background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 100%);
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 50%;
    right: -150px;
    animation: float 25s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.blob-3 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -100px;
    left: 20%;
    animation: float 30s ease-in-out infinite;
    animation-delay: -10s;
}

.blob-4 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 20%;
    right: 15%;
    animation: float 22s ease-in-out infinite reverse;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -100px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(-100px, -50px) scale(1.05);
    }
}

/* custom cursor */
.custom-cursor,
.custom-cursor-dot {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
}

.custom-cursor-dot.cursor-hover {
    transform: translate(-50%, -50%) scale(2);
}

/* hide custom cursor on touch devices and restore default cursor */
@media (hover: none) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    body, * {
        cursor: auto !important;
    }
}

/* hero section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    padding: 160px 60px 60px;
    max-width: var(--max-content-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-title-banner {
    width: 100%;
    max-width: 550px;
    height: auto;
    margin-bottom: 30px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 200, 100, 0.3)) 
            drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
    -webkit-mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
    mask-image: linear-gradient(to right, 
        transparent 0%, 
        black 8%, 
        black 92%, 
        transparent 100%);
}

.hero-title-banner:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 30px rgba(255, 200, 100, 0.5)) 
            drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6));
}

.pixelated-title {
    font-family: 'Press Start 2P', cursive;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* smaller size for section titles */
h2.section-title.pixelated-title {
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.5;
}

.typing-text {
    display: inline-block;
    border-right: 2px solid var(--text-primary);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% { border-color: var(--text-primary); }
    50%, 100% { border-color: transparent; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-subtitle:first-of-type {
    margin-bottom: 40px;
}

.hero-subtitle b {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fade-in-up {
    /* animation removed */
    opacity: 1;
}

/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--accent-primary);
    transition: var(--transition);
    border-bottom: 1px solid var(--accent-primary);
    position: relative;
    overflow: hidden;
}

/* ripple effect */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-btn.primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.hero-btn.primary:hover {
    background: transparent;
    color: var(--accent-primary);
    opacity: 1;
}

.hero-btn.secondary {
    background: transparent;
    color: var(--accent-primary);
}

.hero-btn.secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    opacity: 1;
}

.hero-image {
    flex: 1;
    max-width: 800px;
    transition: transform 0.3s ease;
}

/* image carousel */
.image-carousel {
    position: relative;
    width: 100%;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    /* improve rendering performance and sharpness */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.3);
    /* enhanced image sharpness cuz rez is so bad lmao (lowkey doesnt work)*/
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1), transparent);
    pointer-events: none;
    z-index: 2;
}

/* carousel navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.image-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 1.25rem;
}

/* carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent-primary);
    border-color: var(--text-primary);
    width: 32px;
    border-radius: 6px;
}

/* stats container */
.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* interactive cards */
.interactive-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.interactive-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* game section */
.section-title {
    font-size: var(--h2-font-size);
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
}

.game-image-container {
    position: relative;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    /* enhanced image sharpness */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.game-image-container:hover .game-image {
    transform: scale(1.05) translateZ(0);
}

.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-image-container:hover .image-hover-overlay {
    opacity: 1;
}

.play-overlay-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 20px 40px;
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.play-overlay-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.play-overlay-btn i {
    font-size: 2rem;
}

.game-details {
    padding: 30px 0;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    outline: none;
}

.tag:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.game-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* features section */
.features-section {
    margin-top: 120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--text-primary);
}

.feature-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* hero profile section */
.profile {
    text-align: left;
    padding: 60px 0;
    position: relative;
    max-width: 800px;
}

.profile h1 {
    margin-bottom: 25px;
    animation: gradient-shift 5s ease infinite;
}

.profile p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

.profile img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
    box-shadow: 
        0 0 40px rgba(0, 240, 255, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0 auto 30px;
    display: block;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.profile img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 60px rgba(0, 240, 255, 0.8),
        0 15px 40px rgba(0, 0, 0, 0.6);
}

/* social icons */
.profile .icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.profile .icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.profile .icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--gradient-gaming);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.profile .icons a:hover {
    color: white;
    border-color: var(--accent-primary);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    transform: translateY(-5px);
}

.profile .icons a:hover::before {
    width: 100%;
    height: 100%;
}

/* about section */
.about {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.about:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 
        0 10px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.about h2 {
    margin-bottom: 30px;
}

.about p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: var(--p-font-size);
    color: var(--text-secondary);
}

.about a {
    color: var(--accent-primary);
}

/* call to action section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-section p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-gaming);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.cta-button.secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

/* video modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 10px;
    line-height: 1;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 3px solid var(--text-primary);
}

/* music toggle button */
.music-toggle {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    opacity: 0.9;
}

.music-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
}

.music-toggle i {
    transition: transform 0.3s ease;
}

.music-toggle.muted {
    opacity: 0.5;
}

.music-toggle.muted:hover {
    opacity: 0.7;
}

/* scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--text-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    opacity: 0.7;
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 40px 60px;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title-banner {
        max-width: 600px;
        margin: 0 auto 25px auto;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
    
    .hero-subtitle:first-of-type {
        margin-bottom: 30px;
    }
    
    .hero-image {
        max-width: 700px;
        width: 100%;
        margin: 20px auto 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
        flex-direction: column;
        display: flex;
        gap: 20px;
    }
    
    .hero-content {
        display: contents;
    }
    
    .hero-title {
        order: 2;
    }
    
    .hero-title.pixelated-title {
        line-height: 1.6;
        margin-bottom: 0px;
    }
    
    .hero-title-banner {
        max-width: 95%;
        margin: 0 auto 20px auto;
        order: 1;
        filter: drop-shadow(0 0 15px rgba(255, 200, 100, 0.3)) 
                drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    }
    
    .hero-subtitle {
        line-height: 1.6;
        order: 2;
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    .hero-subtitle:first-of-type {
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        order: 3;
        margin-top: 10px;
        margin-bottom: 25px;
        gap: 10px;
        justify-content: center;
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .hero-image {
        order: 4;
        max-width: 100%;
        margin: 0 auto;
    }
    
    h2.section-title.pixelated-title {
        line-height: 1.6;
    }
    
    .hero-btn {
        flex-shrink: 0;
        white-space: nowrap;
        justify-content: center;
        padding: 12px 20px;
        text-align: center;
    }
    
    /* carousel mobile adjustments */
    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 1;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .stats-container {
        gap: 30px;
        justify-content: center;
    }
    
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile {
        padding: 40px 0;
    }
    
    .profile img {
        width: 150px;
        height: 150px;
    }
    
    
    .profile .icons a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .about {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 60px 30px;
    }
    
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
        padding: 14px 30px;
    }
    
    .music-toggle {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-close {
        top: -40px;
    }
}

