@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

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

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #13151a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    text-align: center;
    padding: 4rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    background: linear-gradient(45deg, #fff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 20, 147, 0.8);
    }
}

.subtitle {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #888;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
    color: #aaa;
    animation: fadeIn 1s ease-out;
}

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

.button {
    padding: 1.2rem 3rem;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
    background: linear-gradient(45deg, #ff69b4, #ff1493);
}

.button:active {
    transform: translateY(1px);
}

.button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ff1493);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button:hover::before {
    opacity: 1;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(34, 34, 34, 0.8);
    backdrop-filter: blur(10px);
    color: #666;
}

footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 10px;
}

footer a:hover {
    color: #ff1493;
}

.ad-container {
    margin: 2rem auto;
    width: 100%;
    max-width: 728px;
    height: 90px;
    background: rgba(51, 51, 51, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}



@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }
    .subtitle {
        font-size: 2rem;
    }
    .hero-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    .button {
        padding: 1rem 2.5rem;
        font-size: 1.3rem;
    }
}

/* Additional styles for new pages */
.content {
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.about-section, .privacy-section {
    margin-bottom: 2rem;
}

.about-section h2, .privacy-section h2 {
    color: #ff1493;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-section p, .privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-section ul, .privacy-section ul {
    list-style-type: none;
    padding-left: 1rem;
}

.about-section ul li, .privacy-section ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-section ul li:before, .privacy-section ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff1493;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff1493;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.secondary {
    background: transparent;
    border: 2px solid #ff1493;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
        margin: 1rem;
    }
    
    .about-section h2, .privacy-section h2 {
        font-size: 1.5rem;
    }
}