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

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    position: relative;
}

.logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1)); }
}

/* Sparkle Effect for Logo */
.logo-container::before,
.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, transparent 20%, rgba(255, 215, 0, 0.1) 20%, rgba(255, 215, 0, 0.1) 80%, transparent 80%),
                radial-gradient(circle, transparent 20%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 80%);
    background-size: 15px 15px, 20px 20px;
    background-position: 0 0, 10px 10px;
    transform: translate(-50%, -50%);
    animation: sparkle 4s linear infinite;
    pointer-events: none;
}

.logo-container::after {
    animation-delay: 2s;
    animation-direction: reverse;
}

@keyframes sparkle {
    0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
    50% { opacity: 0.5; }
    100% { transform: translate(-50%, -50%) rotate(360deg); opacity: 1; }
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: starfield 20s linear infinite;
    pointer-events: none;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffffff, #ff0000, #0000ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: patrioticGradient 4s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

@keyframes patrioticGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Media Buttons */
.social-buttons {
    margin: 40px 0;
}

.social-buttons h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    border: 2px solid #ffd700;
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.social-btn:hover::before {
    transform: translateX(100%);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: #ffed4e;
}

.social-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.social-btn.whatsapp:hover { border-color: #25d366; }
.social-btn.telegram:hover { border-color: #0088cc; }
.social-btn.instagram:hover { border-color: #e4405f; }
.social-btn.twitter:hover { border-color: #1da1f2; }
.social-btn.youtube:hover { border-color: #ff0000; }

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000000;
    border: 2px solid #ffd700;
}

.btn-secondary {
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: #ffffff;
    border: 2px solid #ffd700;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #333333, #1a1a1a);
}

/* Dashboard Section */
.dashboard {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dashboard-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 700;
}

.view-all {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #ffd700;
}

.card-content {
    color: #cccccc;
}

/* X Posts Styles */
.x-post {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #1da1f2;
}

.post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.post-header strong {
    color: #1da1f2;
}

.time {
    color: #888888;
    font-size: 0.9rem;
}

/* Publications Styles */
.publication-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ffd700;
}

.publication-item h4 {
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.publication-item .date {
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Events Styles */
.event-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 3px solid #ff6b6b;
}

.event-item h4 {
    color: #ff6b6b;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(26, 26, 26, 0.8));
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    margin-top: 10px;
}

.news-feed {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-item:hover::before {
    left: 100%;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.news-header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.news-source {
    color: #1da1f2;
    font-weight: 700;
}

.news-time {
    color: #888888;
    font-size: 0.9rem;
}

.news-content {
    color: #ffffff;
    line-height: 1.6;
}

.news-actions {
    text-align: center;
    margin-top: 40px;
}

.news-actions .btn {
    margin: 0 10px;
}

/* Donation Section */
.donate-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.crypto-donations {
    max-width: 1000px;
    margin: 0 auto;
}

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

.crypto-option {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crypto-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.crypto-option:hover::before {
    transform: translateX(100%);
}

.crypto-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.crypto-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: bold;
}

.crypto-option h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #333333, #555555);
    border: 2px solid #ffd700;
    border-radius: 10px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 0.8rem;
    text-align: center;
}

.crypto-address {
    color: #cccccc;
    font-size: 0.8rem;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
    border-radius: 5px;
}

/* Advertising Section (Hidden) */
.advertising-section {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
}

.ad-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.ad-slot {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-top: 2px solid #ffd700;
    padding: 40px 0 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.footer-social a:hover {
    color: #ffd700;
}

.admin-login-hidden {
    text-align: right;
}

.admin-link {
    color: #333333;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 1;
    color: #ffd700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
}

