@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

:root {
    --primary-color: #1e90ff;
    --secondary-color: #ffcc00;
    --accent-color: #ff5e7a;
    --highlight-color: #ff9642;
    --blue-accent: #42c6ff;
    --white: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffde59;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--highlight-color) 10%, transparent 40%),
        radial-gradient(circle at 75% 75%, var(--blue-accent) 10%, transparent 40%),
        radial-gradient(circle at 50% 50%, var(--accent-color) 10%, transparent 40%);
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: gradientShift 30s ease infinite;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    25% { background-position: 50% 25%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 50% 75%; }
    100% { background-position: 0% 0%; }
}

.decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: var(--secondary-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 3s infinite alternate;
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.7));
}

.star-1 {
    top: 15%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation-delay: 0.2s;
}

.star-2 {
    top: 25%;
    right: 15%;
    width: 40px;
    height: 40px;
    animation-delay: 0.5s;
}

.star-3 {
    bottom: 20%;
    left: 15%;
    width: 45px;
    height: 45px;
    animation-delay: 0.8s;
}

.star-4 {
    bottom: 30%;
    right: 10%;
    width: 35px;
    height: 35px;
    animation-delay: 1.1s;
}

.star-5 {
    top: 50%;
    left: 75%;
    width: 30px;
    height: 30px;
    animation-delay: 1.4s;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    background-color: var(--glass-bg);
    border-radius: 25px;
    box-shadow: 
        0 10px 30px rgba(31, 38, 135, 0.3),
        0 0 0 10px var(--primary-color),
        0 0 0 20px var(--secondary-color);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.container:hover {
    transform: translateY(-5px);
}

.container::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: repeating-linear-gradient(
        45deg,
        var(--secondary-color),
        var(--secondary-color) 10px,
        var(--highlight-color) 10px,
        var(--highlight-color) 20px
    );
    border-radius: 35px;
    z-index: -1;
    transform: rotate(-2deg);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    animation: patternShift 15s linear infinite;
}

@keyframes patternShift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.header {
    margin-bottom: 30px;
    position: relative;
}

.title {
    font-family: 'Bangers', cursive;
    font-size: 6rem;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 
        4px 4px 0 var(--secondary-color),
        -4px -4px 0 var(--secondary-color),
        4px -4px 0 var(--secondary-color),
        -4px 4px 0 var(--secondary-color),
        0 4px 0 var(--secondary-color),
        4px 0 0 var(--secondary-color),
        0 -4px 0 var(--secondary-color),
        -4px 0 0 var(--secondary-color),
        2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 4px;
    transform: rotate(-3deg);
    padding: 20px 0;
    position: relative;
    display: inline-block;
    animation: textShadowPulse 3s infinite alternate;
}

@keyframes textShadowPulse {
    0% {
        text-shadow: 
            4px 4px 0 var(--secondary-color),
            -4px -4px 0 var(--secondary-color),
            4px -4px 0 var(--secondary-color),
            -4px 4px 0 var(--secondary-color),
            0 4px 0 var(--secondary-color),
            4px 0 0 var(--secondary-color),
            0 -4px 0 var(--secondary-color),
            -4px 0 0 var(--secondary-color),
            2px 2px 8px rgba(0, 0, 0, 0.4);
    }
    100% {
        text-shadow: 
            5px 5px 0 var(--secondary-color),
            -5px -5px 0 var(--secondary-color),
            5px -5px 0 var(--secondary-color),
            -5px 5px 0 var(--secondary-color),
            0 5px 0 var(--secondary-color),
            5px 0 0 var(--secondary-color),
            0 -5px 0 var(--secondary-color),
            -5px 0 0 var(--secondary-color),
            3px 3px 10px rgba(0, 0, 0, 0.6);
    }
}

.title::after {
    content: "!";
    position: absolute;
    right: -30px;
    top: 5px;
    font-size: 7rem;
    transform: rotate(15deg);
    color: var(--accent-color);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(15deg); }
    40% { transform: translateY(-20px) rotate(10deg); }
    60% { transform: translateY(-10px) rotate(20deg); }
}

.content {
    margin: 20px auto 40px;
    position: relative;
}

.tagline {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 25px;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 1.5s forwards;
    position: relative;
}

.tagline::before, .tagline::after {
    content: '★';
    color: var(--secondary-color);
    position: absolute;
    font-size: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
}

.tagline::before {
    left: -30px;
}

.tagline::after {
    right: -30px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-frame {
    position: relative;
    display: inline-block;
    padding: 20px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.corner-tl {
    top: 0;
    left: 0;
    border-top-left-radius: 15px;
    box-shadow: -3px -3px 8px rgba(0, 0, 0, 0.3);
}

.corner-tr {
    top: 0;
    right: 0;
    border-top-right-radius: 15px;
    box-shadow: 3px -3px 8px rgba(0, 0, 0, 0.3);
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 15px;
    box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.3);
}

.corner-br {
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 15px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}

.logo {
    max-width: 350px;
    height: auto;
    filter: 
        drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4))
        contrast(1.05)
        saturate(1.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 10px solid var(--white);
    border-radius: 20px;
    transform: rotate(2deg);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.image-frame:hover .corner-tl { transform: translate(-5px, -5px); }
.image-frame:hover .corner-tr { transform: translate(5px, -5px); }
.image-frame:hover .corner-bl { transform: translate(-5px, 5px); }
.image-frame:hover .corner-br { transform: translate(5px, 5px); }

.logo:hover {
    transform: scale(1.08) rotate(-3deg);
    filter: 
        drop-shadow(8px 8px 15px rgba(0, 0, 0, 0.5))
        contrast(1.1)
        saturate(1.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    position: relative;
}

.icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    color: var(--white);
    font-size: 2.2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--white);
    position: relative;
    overflow: hidden;
}

.icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.twitter {
    background-color: #1da1f2;
    transform: rotate(-5deg);
}

.chart {
    background-color: var(--accent-color);
    transform: rotate(5deg);
}

.icon:hover {
    transform: translateY(-10px) scale(1.15) rotate(0);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.icon-label {
    position: absolute;
    bottom: -35px;
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    color: #333;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.icon:hover .icon-label {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
    position: relative;
    padding-top: 15px;
}

.footer p {
    position: relative;
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Floating bubble effect */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: -10px;
    animation-delay: 2s;
}

.bubble-3 {
    width: 40px;
    height: 40px;
    bottom: -10px;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes twinkle {
    0% {
        opacity: 0.4;
        transform: scale(0.8) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .title {
        font-size: 4.5rem;
    }
    
    .title::after {
        font-size: 5rem;
        right: -20px;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .tagline::before, .tagline::after {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 280px;
        border-width: 8px;
    }
    
    .icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        border-width: 4px;
    }
    
    .container {
        box-shadow: 
            0 8px 24px rgba(31, 38, 135, 0.4),
            0 0 0 7px var(--primary-color),
            0 0 0 14px var(--secondary-color);
        padding: 25px;
    }
    
    .corner {
        width: 30px;
        height: 30px;
    }
    
    .star-1, .star-2, .star-3, .star-4, .star-5 {
        width: 30px;
        height: 30px;
    }
    
    .social-icons {
        gap: 30px;
    }
} 