* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0e1a;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: url('cursor.png'), auto;
}

a, button, .card {
    cursor: url('cursor.png'), auto;
}

/* Snowflakes Animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    opacity: 0.7;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 12%; animation-duration: 12s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 20%; animation-duration: 11s; animation-delay: 2s; }
.snowflake:nth-child(4) { left: 28%; animation-duration: 13s; animation-delay: 0.5s; }
.snowflake:nth-child(5) { left: 35%; animation-duration: 10s; animation-delay: 1.5s; }
.snowflake:nth-child(6) { left: 45%; animation-duration: 12s; animation-delay: 2.5s; }
.snowflake:nth-child(7) { left: 55%; animation-duration: 11s; animation-delay: 0.8s; }
.snowflake:nth-child(8) { left: 65%; animation-duration: 13s; animation-delay: 1.2s; }
.snowflake:nth-child(9) { left: 75%; animation-duration: 10s; animation-delay: 2.2s; }
.snowflake:nth-child(10) { left: 82%; animation-duration: 12s; animation-delay: 1.8s; }
.snowflake:nth-child(11) { left: 90%; animation-duration: 11s; animation-delay: 0.3s; }
.snowflake:nth-child(12) { left: 15%; animation-duration: 13s; animation-delay: 1.5s; }
.snowflake:nth-child(13) { left: 50%; animation-duration: 10s; animation-delay: 2s; }
.snowflake:nth-child(14) { left: 70%; animation-duration: 12s; animation-delay: 0.7s; }
.snowflake:nth-child(15) { left: 95%; animation-duration: 11s; animation-delay: 1.3s; }

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Card Container */
.card-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 50%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Left Side - Wishes */
.card-left {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%);
}

.vertical-stripe {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    z-index: 3;
    width: 60px;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 1px;
    position: relative;
}

.vertical-text:nth-of-type(1) {
    margin-top: 40px;
}

.vertical-text:nth-of-type(2) {
    margin-top: 50px;
}

.main-content {
    margin-left: 120px;
    width: calc(100% - 80px);
    position: relative;
    z-index: 2;
}

.greeting-line {
    font-size: 100px;
    font-weight: 700;
    color: #ffffff;
    margin: -10px 0px 0px 10px;
    padding: 0;
    line-height: 0.85;
    letter-spacing: 1px;
    text-align: left;
    position: absolute;
    z-index: 3;
    margin-left: 40px !important;
}

.jimmy-text {
    top: 0;
    left: 0;
    height: 153px;
}

.content-wrapper {
    width: 100%;
    max-width: 900px;
    animation: fadeInLeft 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 60px 60px 0px 0px;
    margin-top: 61px;
    margin-left: 45px;
    position: relative;
    z-index: 2;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.greeting {
    font-size: 180px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: -4px;
    text-align: left;
    animation: glow 3s ease-in-out infinite alternate;
}

.jimmy-text {
    font-size: 200px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: left;
    opacity: 0.9;
    margin-top: 31px;
    margin-left: 45px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    to {
        text-shadow: 0 0 40px rgba(220, 38, 38, 0.4);
    }
}

.subtitle {
    font-size: 72px;
    font-weight: 300;
    color: #dc2626;
    margin-bottom: 60px;
    letter-spacing: -1px;
    line-height: 1;
    text-align: left;
}

.message {
    font-size: 32px;
    font-weight: 300;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    text-align: left;
    max-width: 85%;
}

.message-secondary {
    font-size: 28px;
    font-weight: 300;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
    text-align: left;
    max-width: 85%;
}

.signature {
    margin-top: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.signature-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
}

.signature-text {
    font-size: 36px;
    font-weight: 400;
    color: #fbbf24;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Right Side - Visual */
.card-right {
    flex: 1;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 31, 46, 0.95) 100%);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide Scrollbar */
.card-right::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.scroll-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
    animation: pulseHint 2s ease-in-out infinite;
}

.scroll-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    animation: pulseActive 1.5s ease-in-out infinite;
}

.scroll-dot.inactive {
    opacity: 0.3;
}

@keyframes pulseHint {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes pulseActive {
    0%, 100% {
        transform: scale(1.5);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.8);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    }
}

.scrollable-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.right-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 40px;
}

.section-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 40px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.section-text {
    font-size: 24px;
    font-weight: 300;
    color: #e5e7eb;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 600px;
}

.clickable-text {
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.section-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.christmas-tree {
    font-size: 200px;
    position: relative;
    z-index: 3;
    animation: treeGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.3));
}

@keyframes treeGlow {
    from {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.3));
    }
    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(34, 197, 94, 0.6));
    }
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Ornaments */
.ornament {
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
    z-index: 4;
    margin: 20px;
    display: inline-block;
}

.section-2 .ornament {
    position: relative;
}

.section-3 .ornament {
    position: relative;
}

.ornament-1 {
    animation-delay: 0s;
}

.ornament-2 {
    animation-delay: 0.5s;
}

.ornament-3 {
    animation-delay: 1s;
}

.ornament-4 {
    animation-delay: 1.5s;
}

.ornament-5 {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .card {
        flex-direction: column;
    }

    .card-left {
        flex: 1;
        padding: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .content-wrapper {
        padding: 0 40px;
        margin-top: 400px;
    }

    .card-right {
        flex: 1;
    }

    .right-section {
        min-height: 100vh;
        padding: 40px 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-text {
        font-size: 20px;
    }

    .section-image {
        max-width: 400px;
        margin-top: 30px;
    }

    .christmas-tree {
        font-size: 150px;
    }

    .vertical-stripe {
        width: 50px;
    }

    .vertical-text {
        font-size: 18px;
    }

    .vertical-text:nth-of-type(2) {
        margin-top: 40px;
    }

    .main-content {
        margin-left: 120px;
        width: calc(100% - 60px);
    }

    .greeting-line {
        font-size: 120px;
        line-height: 0.85;
        left: 0;
    }

    .jimmy-text {
        height: 102px;
        top: 0;
    }

    .message {
        font-size: 24px;
    }

    .message-secondary {
        font-size: 20px;
    }

    .signature-text {
        font-size: 28px;
    }

    .ornament {
        font-size: 40px;
    }

    .scroll-indicator {
        right: 20px;
    }

    .scroll-dot {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 640px) {
    .card-left {
        padding: 0;
    }

    .vertical-stripe {
        width: 40px;
    }

    .vertical-text {
        font-size: 16px;
    }

    .vertical-text:nth-of-type(2) {
        margin-top: 35px;
    }

    .main-content {
        margin-left: 100px;
        width: calc(100% - 50px);
    }

    .content-wrapper {
        padding: 0 20px;
        margin-top: 280px;
    }

    .greeting-line {
        font-size: 80px;
        line-height: 0.85;
        left: 0;
    }

    .jimmy-text {
        height: 200px;
        top: 0;
    }

    .message {
        font-size: 20px;
    }

    .message-secondary {
        font-size: 18px;
    }

    .signature-text {
        font-size: 24px;
    }

    .christmas-tree {
        font-size: 120px;
    }

    .right-section {
        min-height: 100vh;
        padding: 30px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-text {
        font-size: 18px;
    }

    .section-image {
        max-width: 300px;
        margin-top: 25px;
    }

    .ornament {
        font-size: 35px;
    }

    .scroll-indicator {
        right: 15px;
        gap: 10px;
    }

    .scroll-dot {
        width: 3px;
        height: 3px;
    }
}


