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

body {
    font-family: 'Inter', sans-serif;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="growtopia" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23000000"/><circle cx="20" cy="20" r="1" fill="%231a1a1a"/><circle cx="80" cy="40" r="0.5" fill="%231a1a1a"/><circle cx="40" cy="80" r="0.8" fill="%231a1a1a"/><circle cx="90" cy="90" r="0.3" fill="%231a1a1a"/><circle cx="10" cy="60" r="0.6" fill="%231a1a1a"/><circle cx="70" cy="10" r="0.4" fill="%231a1a1a"/><circle cx="60" cy="70" r="0.7" fill="%231a1a1a"/><circle cx="30" cy="30" r="0.2" fill="%231a1a1a"/><circle cx="50" cy="50" r="0.9" fill="%231a1a1a"/></pattern></defs><rect width="100" height="100" fill="url(%23growtopia)"/></svg>') repeat;
    background-size: 100px 100px;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #000000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-icon.large {
    width: 80px;
    height: 80px;
    font-size: 36px;
}

.logo-text {
    color: #ffffff;
}

.logo-accent {
    color: #9333ea;
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 16px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-register {
    background: #9333ea;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-register:hover {
    background: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.btn-login {
    background: transparent;
    border: 2px solid #9333ea;
    color: #9333ea;
}

.btn-login:hover {
    background: #9333ea;
    color: white;
}

/* Main Content */
.main {
    padding-top: 100px;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #9333ea 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    font-weight: 400;
}

/* Current Link Card */
.current-link-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.current-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(147, 51, 234, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.link-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-header i {
    font-size: 18px;
    color: #9333ea;
}

.link-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.link-text {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px 25px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: subtleShine 4s infinite;
}

@keyframes subtleShine {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: translateX(100%); opacity: 0; }
}

.link-code {
    font-size: 38px;
    font-weight: 700;
    color: #e0e0e0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    text-shadow: 
        0 0 3px #9333ea,
        0 0 6px #9333ea,
        0 0 9px #9333ea;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    text-align: center;
    display: block;
    animation: subtlePurpleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtlePurpleGlow {
    from {
        text-shadow: 
            0 0 3px #9333ea,
            0 0 6px #9333ea,
            0 0 9px #9333ea;
    }
    to {
        text-shadow: 
            0 0 1px #9333ea,
            0 0 3px #9333ea,
            0 0 5px #9333ea;
    }
}

.btn-join-live {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-join-live:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #c13584, #a02a6b);
}

.social-link.discord {
    background: linear-gradient(135deg, #7289da, #5865f2);
}

.social-link.discord:hover {
    background: linear-gradient(135deg, #5865f2, #4752c4);
}

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

.social-link.whatsapp:hover {
    background: #128c7e;
}

.social-link i {
    font-size: 18px;
}

.social-link span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9333ea, #00ff00);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header i {
    font-size: 16px;
    color: #9333ea;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.card-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.card-update {
    font-size: 12px;
    color: #888888;
    margin-top: 5px;
}

/* Price Buttons */
.btn-price {
    background: transparent;
    border: 2px solid;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-buy {
    border-color: #00ff00;
    color: #00ff00;
}

.btn-buy:hover {
    background: #00ff00;
    color: #000000;
}

.btn-sell {
    border-color: #9333ea;
    color: #9333ea;
}

.btn-sell:hover {
    background: #9333ea;
    color: #ffffff;
}

/* Status Indicator */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

.status-indicator.online {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        gap: 20px;
    }
    
    .nav-link span {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .auth-buttons {
        order: 2;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .link-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .current-link-card {
        padding: 20px;
    }
    
    .link-code {
        font-size: 24px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .social-link {
        justify-content: center;
        padding: 10px 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card {
    animation: fadeInUp 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }
.info-card:nth-child(5) { animation-delay: 0.5s; }
.info-card:nth-child(6) { animation-delay: 0.6s; }

/* Section Styles */
.section {
    padding: 80px 0;
    margin-top: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: #cccccc;
}

/* Prices Grid */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    border-color: #9333ea;
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.price-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #9333ea;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dl-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    color: #cccccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(147, 51, 234, 0.3);
}

.youtube-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.team-card p {
    color: #9333ea;
    margin-bottom: 20px;
}

.team-youtube {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.youtube-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 25px;
    color: #ff4444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background: #ff4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-link i {
    font-size: 16px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, #9333ea, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.news-content {
    padding: 30px;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.news-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #888888;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Giveaways Grid */
.giveaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.giveaway-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.giveaway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.giveaway-image {
    height: 200px;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.giveaway-content {
    padding: 30px;
}

.giveaway-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.giveaway-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.giveaway-timer {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    color: #00ff00;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #1a0b2e, #2d1b4e);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.close {
    color: #cccccc;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #9333ea;
}

.modal-form {
    padding: 30px;
}

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

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-group input::placeholder {
    color: #888888;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2d1b4e;
}

::-webkit-scrollbar-thumb {
    background: #9333ea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

/* Dashboard Section */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
    border-color: rgba(147, 51, 234, 0.3);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.dashboard-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.dashboard-content p {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 14px;
}

.dashboard-content span {
    color: #9333ea;
    font-weight: 600;
}

/* Admin Panel Section */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.admin-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.admin-card.full-width {
    grid-column: 1 / -1;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
    border-color: rgba(147, 51, 234, 0.3);
}

.admin-card-header {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    padding: 20px;
    color: white;
}

.admin-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-card-content {
    padding: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

/* Preview Tabs */
.preview-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(147, 51, 234, 0.2);
    color: white;
}

.tab-btn.active {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
}

.preview-content {
    min-height: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-content h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.preview-content p {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.preview-content .preview-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-content .preview-item h5 {
    color: #9333ea;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.preview-content .preview-item p {
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Admin Actions */
.admin-actions {
    margin-top: 40px;
    text-align: center;
}

.admin-actions .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design for Admin Panel */
@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .admin-card-content {
        padding: 20px;
    }
    
    .preview-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
} 

/* Admin Login Page */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    padding: 20px;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-header h1 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.admin-login-header p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 16px;
}

.admin-login-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.admin-login-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.admin-login-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.admin-login-form .form-group input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.admin-login-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-login-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.admin-login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
    color: #9333ea;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #7c3aed;
}

/* Admin Panel Page */
.admin-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.admin-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.admin-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-welcome {
    color: #cccccc;
    font-size: 14px;
}

.admin-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Additional Admin Styles */
.login-error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.admin-login-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.admin-login-form .btn:disabled:hover {
    transform: none;
}

/* Responsive Design for Admin Pages */
@media (max-width: 768px) {
    .admin-login-card {
        padding: 30px 20px;
    }
    
    .admin-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .admin-header-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-main {
        padding: 20px;
    }
} 