
        :root {
            --bg-color: #0a192f;
            --text-color: #e6f1ff;
            --accent-color: #ffd700;
            --secondary-color: #ff8c00;
            --tertiary-color: #8892b0;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            height: 100%;
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow: hidden;
        }

        .page-wrapper {
            display: flex;
            flex-direction: column;
            height: 100vh;
        }

        .content-wrapper {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
            z-index: 1;
        }

        .container {
            display: flex;
            min-height: 100%;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
        }

        .left-side, .right-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .logo {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: bold;
            color: var(--accent-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            margin: 0;
            animation: fadeInUp 1s ease-out;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .tagline {
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: var(--tertiary-color);
            margin-top: 10px;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        .hacktoberfest {
            font-size: clamp(1.5rem, 6vw, 3rem);
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .portfolio-templates {
            font-size: clamp(1.25rem, 4vw, 2.25rem);
            margin-bottom: 20px;
            font-weight: 600;
            animation: fadeInUp 1s ease-out 0.9s backwards;
        }

        .description {
            text-align: left;
            font-size: clamp(0.875rem, 2vw, 1.125rem);
            color: var(--tertiary-color);
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 600px;
            padding: 0 15px;
            animation: fadeInUp 1s ease-out 1.2s backwards;
        }

        .contribution-list {
            text-align: left;
            padding-left: 20px;
            margin: 0;
            list-style-position: outside;
        }
        
        .contribution-list li {
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .cta-button {
            display: inline-block;
            padding: clamp(8px, 2vw, 12px) clamp(16px, 4vw, 24px);
            background-color: var(--accent-color);
            color: var(--bg-color);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: clamp(0.875rem, 2vw, 1.125rem);
            animation: fadeInUp 1s ease-out 1.5s backwards;
        }

        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.5;
        }

        .background-animation span {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 50%;
            animation: move 8s infinite linear;
        }

        .background-animation span:nth-child(1) {
            top: 20%;
            left: 20%;
            animation-duration: 15s;
        }

        .background-animation span:nth-child(2) {
            top: 60%;
            left: 80%;
            animation-duration: 17s;
        }

        .background-animation span:nth-child(3) {
            top: 40%;
            left: 40%;
            animation-duration: 13s;
        }

        .background-animation span:nth-child(4) {
            top: 80%;
            left: 10%;
            animation-duration: 19s;
        }

        .background-animation span:nth-child(5) {
            top: 10%;
            left: 60%;
            animation-duration: 14s;
        }

        .sticker {
            position: absolute;
            width: clamp(30px, 5vw, 60px);
            height: auto;
            opacity: 0.7;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .sticker:hover {
            transform: scale(1.1);
            opacity: 1;
        }

        .sticker-1 {
            top: 10%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }

        .sticker-2 {
            top: 20%;
            right: 5%;
            animation: float 8s ease-in-out infinite;
        }

        .sticker-3 {
            bottom: 10%;
            left: 10%;
            animation: float 7s ease-in-out infinite;
        }

        .sticker-4 {
            bottom: 20%;
            right: 10%;
            animation: float 9s ease-in-out infinite;
        }

        .footer {
            background-color: rgba(10, 25, 47, 0.8);
            padding: 10px 20px;
            text-align: center;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out 1.8s backwards;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links a {
            color: var(--tertiary-color);
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .social-icons a {
            color: var(--tertiary-color);
            font-size: 1.5rem;
            margin: 0 10px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: var(--accent-color);
        }

        @keyframes move {
            0% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(100px, 100px) scale(1.5);
            }
            100% {
                transform: translate(0, 0) scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

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

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            .left-side, .right-side {
                margin-bottom: 40px;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-links, .social-icons {
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            .description {
                padding: 0 10px;
            }
        }
