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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 50%, #e0f0e0 100%);
    padding: 20px;
    position: relative;
    min-height: 100vh;
}

/* Green Leaves Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(50, 205, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(34, 139, 34, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 60%, rgba(56, 142, 60, 0.08) 0%, transparent 50%);
    z-index: -2;
}

/* Leaf Shapes */
.leaf {
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(34, 139, 34, 0.3);
    border-radius: 0 100% 0 100%;
    transform: rotate(45deg);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.leaf:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg) scale(0.8);
}

.leaf:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(45deg) scale(1.2);
}

.leaf:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 4s;
    transform: rotate(45deg) scale(0.9);
}

.leaf:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
    transform: rotate(45deg) scale(1.1);
}

.leaf:nth-child(5) {
    bottom: 40%;
    left: 20%;
    animation-delay: 3s;
    transform: rotate(45deg) scale(0.7);
}

/* White Ice Crystals */
.ice-crystal {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
    animation: sparkle 4s ease-in-out infinite;
}

.ice-crystal::before,
.ice-crystal::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.ice-crystal::before {
    transform: rotate(60deg);
}

.ice-crystal::after {
    transform: rotate(-60deg);
}

.ice-crystal:nth-child(6) {
    top: 15%;
    left: 30%;
    animation-delay: 0.5s;
}

.ice-crystal:nth-child(7) {
    top: 40%;
    right: 25%;
    animation-delay: 2.5s;
}

.ice-crystal:nth-child(8) {
    bottom: 30%;
    left: 40%;
    animation-delay: 1.5s;
}

.ice-crystal:nth-child(9) {
    top: 70%;
    right: 40%;
    animation-delay: 3.5s;
}

.ice-crystal:nth-child(10) {
    bottom: 10%;
    left: 60%;
    animation-delay: 0.8s;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
    font-size: 14px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: #0088cc;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.viber {
    background: #665cac;
}

.social-btn.signal {
    background: #3a76f0;
}

.social-btn i {
    font-size: 16px;
}

/* Location Link */
.location-link {
    text-align: center;
    margin: 30px 0;
}

.location-link a {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.location-link a:hover {
    text-decoration: underline;
}

.location-link i {
    margin-right: 5px;
}

/* Sections */
section {
    margin-bottom: 40px;
    padding: 20px 0;
}

section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

section ul li {
    margin-bottom: 8px;
    color: #555;
}

/* Why Join Section */
.why-join ul {
    list-style: none;
    margin-left: 0;
}

.why-join ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.why-join ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item p {
    margin-bottom: 0;
    font-style: italic;
}

/* Description Section */
.description p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    background: #f0f8f0;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #28a745;
}

/* Telegram Benefits */
.telegram-benefits ul {
    list-style: none;
    margin-left: 0;
}

.telegram-benefits ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Warning Text */
.warning-text {
    color: #dc3545 !important;
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-weight: 600;
}

/* Legal Disclaimer */
.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 30px;
    text-align: center;
}

.disclaimer p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        justify-content: center;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .social-btn {
        width: 100%;
        padding: 15px 20px;
    }
    
    
    section {
        padding: 15px 0;
    }
    
    .faq-item {
        padding: 12px;
    }
    
    .description p {
        padding: 15px;
        text-align: left;
    }
    
}

/* Smooth Transitions */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Focus Styles for Accessibility */
.social-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { 
        transform: rotate(45deg) translateY(0px) scale(var(--scale, 1));
    }
    50% { 
        transform: rotate(45deg) translateY(-15px) scale(var(--scale, 1));
    }
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.8;
        transform: rotate(0deg) scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: rotate(180deg) scale(1.2);
    }
}

/* Print Styles */
@media print {
    .social-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}