* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 60px 40px;
    padding-bottom: 120px;
    line-height: 1.8;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
}

body.light-mode {
    background-color: #f5f5f5;
    color: #2d2d2d;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.hero {
    margin-bottom: 60px;
}

h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.typing-container {
    color: #ff69b4;
    display: inline-block;
}

#typed-text {
    color: #ff69b4;
}

.cursor {
    color: #ff69b4;
    animation: blink 0.7s infinite;
}

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

.about-section {
    margin-bottom: 40px;
}

p {
    margin-bottom: 30px;
    font-size: 20px;
}

.coming-soon {
    color: #ff69b4;
    font-weight: 600;
    font-style: italic;
    display: inline-block;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
        text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    }
}

strong {
    font-weight: 600;
}

.pink {
    color: #ff69b4;
    font-weight: 600;
}

.blue {
    color: #4a9eff;
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 15px 35px;
    border: 3px solid #ff69b4;
    color: #ff69b4;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    font-family: inherit;
}

.button:hover {
    background-color: #ff69b4;
    color: #2d2d2d;
    transform: translateY(-2px);
    border-bottom: 3px solid #ff69b4;
}

body.light-mode .button:hover {
    color: #f5f5f5;
}

.button i {
    margin-right: 8px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 25px 40px;
    border-top: 2px solid #ff69b4;
    transition: background-color 0.3s ease;
}

body.light-mode .footer {
    background-color: #e0e0e0;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-content > p:first-child {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #2d2d2d;
    color: #ff69b4;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid #ff69b4;
    border-bottom: 2px solid #ff69b4;
}

body.light-mode .social-icon {
    background-color: #f5f5f5;
}

.social-icon:hover {
    background-color: #ff69b4;
    color: #2d2d2d;
    transform: translateY(-3px);
}

body.light-mode .social-icon:hover {
    color: #f5f5f5;
}

.footer-text {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    body {
        padding: 40px 20px;
        padding-bottom: 140px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    p {
        font-size: 18px;
    }
    
    .buttons {
        flex-direction: column;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }
    
    .footer {
        padding: 20px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}