/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0F0F0F;
    --purple: #7B61FF;
    --pink-soft: #FF7EB3;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple), var(--pink-soft));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--pink-soft), var(--purple));
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--pink-soft));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--pink-soft);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.3), rgba(255, 126, 179, 0.3));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* ========== LOADING SCREEN ========== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.loading-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.progress-bar-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--purple), var(--pink-soft));
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* ========== FLOATING HEARTS ========== */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: floatHeart 6s ease-in infinite;
    opacity: 0.6;
}

@keyframes floatHeart {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ========== PARTICLES CANVAS ========== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ========== MUSIC PLAYER ========== */
.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9995;
}

.music-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.5);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255, 126, 179, 0.6);
}

.music-toggle.playing {
    animation: spin 3s linear infinite;
}

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

/* ========== CONTAINER & SECTION ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== GLASS CARD ========== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========== HERO SECTION ========== */
#hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #0F0F0F, #1a1a2e, #16213e, #0F0F0F);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-container {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.heart-icon {
    color: var(--pink-soft);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--purple), 0 0 30px var(--purple), 0 0 40px var(--purple);
    }
    to {
        text-shadow: 0 0 30px var(--pink-soft), 0 0 40px var(--pink-soft), 0 0 50px var(--pink-soft);
    }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.typing-container {
    margin-bottom: 3rem;
    min-height: 60px;
}

.typing-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--pink-soft);
}

.typing-cursor {
    font-size: 1.8rem;
    color: var(--pink-soft);
    animation: blink 0.7s infinite;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    color: var(--white);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 126, 179, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--purple);
}

.btn-secondary:hover {
    background: var(--purple);
    transform: translateY(-5px);
}

/* ========== OPENING LETTER ========== */
.letter-card {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

.letter-header {
    text-align: center;
    margin-bottom: 2rem;
}

.letter-header i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.letter-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.letter-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 2;
}

/* ========== LOVE COUNTER ========== */
.counter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.counter-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(123, 97, 255, 0.3);
}

.counter-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ========== TIMELINE ========== */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--purple), var(--pink-soft));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--pink-soft);
}

.timeline-content p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-weight: 500;
    text-align: center;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-content p {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* ========== REASONS ========== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.reason-card {
    perspective: 1000px;
    height: 180px;
}

.reason-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.reason-card:hover .reason-inner {
    transform: rotateY(180deg);
}

.reason-front, .reason-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.reason-front {
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
}

.reason-front i {
    font-size: 3rem;
}

.reason-back {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transform: rotateY(180deg);
    font-size: 0.95rem;
}

/* ========== SECRET LETTER ========== */
.envelope-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.envelope {
    position: relative;
    width: 320px;
    height: 220px;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 10px 40px rgba(123, 97, 255, 0.3);
}

.envelope:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 126, 179, 0.5);
}

.envelope::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    border-top: 130px solid var(--primary-bg);
    border-radius: 15px 15px 0 0;
    z-index: 2;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: top;
}

.envelope.open::before {
    transform: rotateX(180deg);
    opacity: 0;
}

.envelope-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    z-index: 3;
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Secret Letter Content */
.secret-letter-content .glass-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
}

.secret-letter-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--pink-soft);
    text-align: center;
}

.secret-letter-content .letter-body {
    line-height: 2;
    margin-bottom: 2rem;
}

.secret-letter-content .letter-body p {
    margin-bottom: 1rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.secret-letter-content .letter-sign-off {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: right;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.secret-letter-content .letter-sender {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: right;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== PLAYLIST ========== */
.playlist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.playlist-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-10px);
}

.playlist-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.playlist-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.playlist-card p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.audio-player {
    max-width: 500px;
    margin: 0 auto;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.player-controls button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-controls button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 126, 179, 0.6);
}

.player-info {
    text-align: center;
}

/* ========== FUTURE DREAMS ========== */
.dreams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dream-card {
    text-align: center;
    transition: all 0.3s ease;
}

.dream-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123, 97, 255, 0.3);
}

.dream-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.dream-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--pink-soft);
}

.dream-card p {
    opacity: 0.8;
}

/* ========== MEMORY WALL ========== */
.sticky-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sticky-note {
    padding: 2rem;
    border-radius: 10px;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sticky-note:hover {
    transform: rotate(0deg) scale(1.05);
}

.note-pink {
    background: linear-gradient(135deg, rgba(255, 126, 179, 0.3), rgba(255, 126, 179, 0.1));
    border: 1px solid rgba(255, 126, 179, 0.3);
}

.note-blue {
    background: linear-gradient(135deg, rgba(123, 97, 255, 0.3), rgba(123, 97, 255, 0.1));
    border: 1px solid rgba(123, 97, 255, 0.3);
    transform: rotate(2deg);
}

.note-purple {
    background: linear-gradient(135deg, rgba(180, 97, 255, 0.3), rgba(180, 97, 255, 0.1));
    border: 1px solid rgba(180, 97, 255, 0.3);
    transform: rotate(-1deg);
}

.sticky-note h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ========== LOVE MESSAGES ========== */
.message-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--pink-soft);
    opacity: 0.5;
}

.love-message {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

/* ========== SURPRISE SECTION ========== */
.surprise-container {
    text-align: center;
}

.surprise-btn {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 0 50px rgba(123, 97, 255, 0.5);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    animation: pulse 2s ease-in-out infinite;
}

.surprise-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 80px rgba(255, 126, 179, 0.7);
}

/* ========== POPUP ========== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10002;
    justify-content: center;
    align-items: center;
}

.popup-content {
    text-align: center;
    max-width: 600px;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.close-popup {
    margin-top: 2rem;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-popup:hover {
    transform: scale(1.1);
}

/* ========== FOOTER ========== */
.footer-content {
    text-align: center;
    padding: 3rem 0;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-text {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-for {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--pink-soft);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--purple), var(--pink-soft));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .typing-text {
        font-size: 1.3rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
        padding-right: 0;
    }
    
    .timeline-icon {
        left: 0 !important;
        right: auto !important;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .counter-value {
        font-size: 2.5rem;
    }
    
    .loading-logo {
        font-size: 3rem;
    }
}