/* Sweet20Lines.online - Main CSS Styles */
/* Based on the provided design theme with pink/magenta color scheme */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FDF7F8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #E91E63;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #E91E63;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #E91E63;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    color: #E91E63;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: normal;
}

.hero-content p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #E91E63;
    color: white;
}

.btn-primary:hover {
    background-color: #C2185B;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #E91E63;
    border: 2px solid #E91E63;
}

.btn-secondary:hover {
    background-color: #E91E63;
    color: white;
}

/* Game Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #E91E63;
}

.feature-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 16px;
}

/* Game Info Section */
.game-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
}

.game-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-info-text h2 {
    font-size: 36px;
    color: #E91E63;
    margin-bottom: 20px;
}

.game-info-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(233, 30, 99, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #E91E63;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* Game Preview */
.game-preview {
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.game-preview img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #E91E63;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E91E63;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content p {
    color: #ccc;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 14px;
    color: #999;
}

/* Responsible Gaming Disclaimer */
.responsible-gaming {
    margin-top: 30px;
    padding: 25px;
    background-color: #2c3e50;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
}

.responsible-gaming h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.responsible-gaming p {
    color: #ecf0f1;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.responsible-gaming strong {
    color: #e74c3c;
    font-weight: bold;
}

.help-links {
    margin: 20px 0;
}

.help-links p {
    color: #ecf0f1;
    font-weight: bold;
    margin-bottom: 10px;
}

.help-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-links li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.help-links li:before {
    content: "📞";
    position: absolute;
    left: 0;
    top: 0;
}

.help-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.help-links a:hover {
    color: #5dade2;
    text-decoration: underline;
}

.age-restriction {
    background-color: #e74c3c;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .responsible-gaming {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .responsible-gaming h4 {
        font-size: 16px;
    }
    
    .responsible-gaming p {
        font-size: 13px;
    }
    
    .help-links li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .responsible-gaming {
        padding: 15px 10px;
    }
    
    .responsible-gaming h4 {
        font-size: 14px;
    }
    
    .responsible-gaming p {
        font-size: 12px;
    }
    
    .help-links li {
        font-size: 12px;
        padding-left: 15px;
    }
    
    .age-restriction {
        padding: 8px 10px;
        font-size: 12px;
    }
}

@media (max-width: 320px) {
    .responsible-gaming {
        padding: 12px 8px;
    }
    
    .responsible-gaming h4 {
        font-size: 13px;
    }
    
    .responsible-gaming p {
        font-size: 11px;
    }
    
    .help-links li {
        font-size: 11px;
        padding-left: 12px;
    }
    
    .age-restriction {
        padding: 6px 8px;
        font-size: 11px;
    }
}

/* Game Page Styles */
.game-container {
    padding: 40px 0;
    background-color: white;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

/* Content Pages */
.content-page {
    padding: 60px 0;
    background-color: white;
}

.content-page h1 {
    font-size: 36px;
    color: #E91E63;
    margin-bottom: 30px;
    text-align: center;
}

.content-page h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 40px;
}

.content-page h3 {
    font-size: 22px;
    color: #E91E63;
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-page p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-page li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E91E63;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C2185B;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .game-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .game-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-frame {
        height: 400px;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .game-info {
        padding: 60px 0;
    }

    .game-info-text h2 {
        font-size: 28px;
    }

    .content-page h1 {
        font-size: 28px;
    }

    .content-page h2 {
        font-size: 24px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .game-frame {
        height: 300px;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .game-info-text h2 {
        font-size: 24px;
    }

    .content-page h1 {
        font-size: 24px;
    }

    .content-page h2 {
        font-size: 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }
}
