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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    opacity: 0;
    animation: pageLoad 0.8s ease-out forwards;
}

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

/* Page transition effects */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #1a0a2e, #000000);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced particle effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(147, 51, 234, 0.6);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.8;
    }
}

/* Animated stars background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkleAndMove 8s infinite linear;
}

.star:nth-child(odd) {
    animation-delay: 1s;
}

.star:nth-child(3n) {
    animation-delay: 2s;
}

.star:nth-child(4n) {
    animation-delay: 3s;
}

@keyframes twinkleAndMove {
    0% { 
        opacity: 0.3; 
        transform: scale(1) translateY(0px) translateX(0px); 
    }
    25% { 
        opacity: 1; 
        transform: scale(1.1) translateY(-2px) translateX(1px); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1) translateY(-4px) translateX(-1px); 
    }
    75% { 
        opacity: 0.8; 
        transform: scale(1.05) translateY(-2px) translateX(0.5px); 
    }
    100% { 
        opacity: 0.3; 
        transform: scale(1) translateY(0px) translateX(0px); 
    }
}

/* Cursor beam effect — disabled */
.cursor-beam {
    display: none;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333ea;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #7c3aed;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #9333ea;
}

.nav-link.active {
    color: #9333ea;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-flag {
    width: 24px;
    height: 18px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    opacity: 0.7;
    background-size: cover;
    background-position: center;
}

.lang-flag.en {
    /* Union Jack - UK flag */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Crect width='60' height='36' fill='%23012169'/%3E%3Cpath d='M0,0 L60,36 M60,0 L0,36' stroke='%23fff' stroke-width='7.2'/%3E%3Cpath d='M0,0 L60,36 M60,0 L0,36' stroke='%23C8102E' stroke-width='4.8'/%3E%3Cpath d='M30,0 V36 M0,18 H60' stroke='%23fff' stroke-width='12'/%3E%3Cpath d='M30,0 V36 M0,18 H60' stroke='%23C8102E' stroke-width='7.2'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-flag.es {
    /* Spain flag */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Crect width='60' height='36' fill='%23c60b1e'/%3E%3Crect y='9' width='60' height='18' fill='%23ffc400'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-flag.ru {
    /* Russia flag */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Crect width='60' height='12' fill='%23fff'/%3E%3Crect y='12' width='60' height='12' fill='%230039a6'/%3E%3Crect y='24' width='60' height='12' fill='%23d52b1e'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-flag:hover,
.lang-flag.active {
    opacity: 1;
    transform: scale(1.1);
}

.lang-flag:not(.active) {
    opacity: 0.5;
}

.cart-btn {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.3);
    text-decoration: none;
    position: relative;
}

.cart-btn:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: #9333ea;
}

.cart-count {
    background: #9333ea;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
}

.cart-count.show {
    display: flex;
}

/* Live Server Status Widget */
.server-status-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    z-index: 200;
    min-width: 200px;
    transition: all 0.3s ease;
}

.server-status-widget:hover {
    border-color: rgba(147, 51, 234, 0.5);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-indicator.offline {
    background: #ef4444;
}

.status-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.status-label {
    color: #cccccc;
}

.status-value {
    color: #9333ea;
    font-weight: 500;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
}

/* Hero Section */
.hero-section {
    padding: 6rem 2rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #9333ea;
    margin-bottom: 4rem;
    font-weight: 500;
}

/* Link Steps Container */
.link-steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    width: 300px;
    text-align: left;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.step-card:hover {
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.step-number {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.step-label {
    color: #9333ea;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.step-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.step-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.status-icon {
    color: #9333ea;
}

.step-button {
    width: 100%;
    background: #9333ea;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-button:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.step-button:disabled {
    background: rgba(147, 51, 234, 0.3);
    cursor: not-allowed;
    transform: none;
}

.step-button.completed {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.unlink-btn {
    width: 100%;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    background: transparent;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.03em;
}

.unlink-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    transform: translateY(-1px);
}

/* Footer note */
.footer-note {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.footer-note a {
    color: #9333ea;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

/* Home Page Styles */
.home-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.home-content {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.main-title {
    font-size: 9rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #9333ea 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
    }
    to {
        text-shadow: 0 0 40px rgba(147, 51, 234, 0.4);
    }
}

.main-subtitle {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.home-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.home-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.home-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(147, 51, 234, 0.15);
    color: #9333ea;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.card-btn:hover {
    background: rgba(147, 51, 234, 0.25);
    border-color: #9333ea;
    transform: translateY(-1px);
}

.discord-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(147, 51, 234, 0.03) 100%);
}

.discord-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 3px 12px rgba(147, 51, 234, 0.25);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(147, 51, 234, 0.35);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.card-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Server Info Page Styles */
.server-info-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.server-header {
    text-align: center;
    margin-bottom: 3rem;
}

.server-badge {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.server-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.server-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header .card-icon {
    font-size: 2rem;
}

.card-header .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.stat-list, .feature-list, .rules-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.stat-label {
    color: #cccccc;
    font-weight: 500;
}

.stat-value {
    color: #9333ea;
    font-weight: 600;
}

.feature-item, .rule-item {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.feature-item {
    color: #9333ea;
}

.connection-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.connection-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.connection-label {
    color: #cccccc;
    font-weight: 500;
    font-size: 0.9rem;
}

.connection-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-value code {
    background: rgba(147, 51, 234, 0.1);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.copy-btn {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: #9333ea;
}

.server-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.action-btn.primary {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

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

.action-btn.secondary {
    background: rgba(147, 51, 234, 0.15);
    color: #9333ea;
    border-color: rgba(147, 51, 234, 0.25);
}

.action-btn.secondary:hover {
    background: rgba(147, 51, 234, 0.25);
    border-color: #9333ea;
    transform: translateY(-1px);
}

/* Kit Details Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.kit-modal {
    background: #111118;
    border: 1px solid rgba(147, 51, 234, 0.35);
    border-radius: 16px;
    padding: 2rem;
    width: min(520px, 100%);
    position: relative;
    backdrop-filter: blur(20px);
    transform: scale(0.92);
    transition: transform 0.25s ease;
    margin: auto;
}

.modal-overlay.active .kit-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.modal-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #9333ea;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-description {
    margin-bottom: 1.5rem;
}

.modal-description h4 {
    color: #9333ea;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-kit-contents {
    margin-bottom: 1.5rem;
}

.modal-kit-contents h4 {
    color: #9333ea;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kit-contents-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.kit-contents-preview .kit-image-placeholder {
    width: 100%;
    height: 120px;
    background: rgba(147, 51, 234, 0.05);
    border: 2px dashed rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333ea;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.kit-contents-preview .kit-description {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

.modal-features {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 8px;
}

.feature-icon {
    color: #9333ea;
    font-weight: 600;
}

.feature-text {
    color: #cccccc;
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

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

.modal-btn.secondary {
    background: rgba(147, 51, 234, 0.15);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.modal-btn.secondary:hover {
    background: rgba(147, 51, 234, 0.25);
    border-color: #9333ea;
}

/* Store Section */
.store-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.store-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-badge {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.store-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
}

.store-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.store-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    color: #9333ea;
    font-weight: 500;
}

.store-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #9333ea;
    border-color: #9333ea;
    color: #ffffff;
}

.tab-btn:hover {
    border-color: rgba(147, 51, 234, 0.5);
}

.store-info {
    color: #888;
    margin-bottom: 2rem;
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.store-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

.store-item:hover {
    transform: translateY(-3px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 15px 30px rgba(147, 51, 234, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.store-item.bundle {
    border: 2px solid #9333ea;
    background: rgba(147, 51, 234, 0.08);
}

.item-image {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-badges {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge {
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge.sale {
    background: #9333ea;
    color: #ffffff;
}

.badge.discount {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.item-content {
    padding: 1rem;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    min-height: 1.5rem;
    color: #ffffff;
}

.item-type {
    color: #9333ea;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333ea;
    margin-bottom: 0.75rem;
}

.item-features {
    margin-bottom: 1rem;
}

.feature-item {
    color: #cccccc;
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
    line-height: 1.3;
}

.color-preview {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9333ea;
    margin-left: 0.3rem;
}

.view-details-btn {
    width: 100%;
    background: rgba(147, 51, 234, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.25);
    color: #9333ea;
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.view-details-btn:hover {
    background: rgba(147, 51, 234, 0.25);
    border-color: #9333ea;
    transform: translateY(-1px);
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: none;
    color: #ffffff;
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(147, 51, 234, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

/* Kit Contents Dropdown */
.kit-contents {
    margin-top: 1rem;
    border-top: 1px solid rgba(147, 51, 234, 0.15);
    padding-top: 1rem;
}

.kit-toggle {
    width: 100%;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.6rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.kit-toggle:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: #9333ea;
}

.toggle-arrow {
    transition: transform 0.3s ease;
}

.kit-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.kit-contents-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.kit-contents-panel.active {
    max-height: 400px;
}

.kit-contents-inner {
    padding: 1rem;
}

.kit-image-placeholder {
    width: 100%;
    height: 150px;
    background: rgba(147, 51, 234, 0.05);
    border: 2px dashed rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333ea;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.kit-image-placeholder:hover {
    border-color: rgba(147, 51, 234, 0.4);
    background: rgba(147, 51, 234, 0.08);
}

.kit-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.kit-description {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    --footer-box-bottom: 20px;
    --footer-box-height: 72px;
    --footer-copyright-bottom: 48px;
    --footer-line-bottom: 97px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    text-align: center;
    margin-top: 0;
    border-top: 0;
    position: relative;
    z-index: 10;
}

.footer::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--footer-line-bottom);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    z-index: 190;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 0 24px;
    box-sizing: border-box;
}

.footer-legal-columns {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.2rem;
    justify-self: start;
    position: fixed;
    left: 20px;
    bottom: var(--footer-box-bottom);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    backdrop-filter: blur(10px);
    z-index: 200;
}

.footer-legal-column h4 {
    margin: 0 0 0.5rem;
    color: #d8ccff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}

.footer-links a {
    color: #8f8f95;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.72rem;
    line-height: 1.15;
    transition: color 0.2s ease;
}

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

.footer-copyright {
    margin: 0;
    color: #8d8d94;
    text-align: center;
    position: fixed;
    left: 50%;
    bottom: var(--footer-copyright-bottom);
    transform: translateX(-50%);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.92;
    z-index: 200;
}

.footer-content h3 {
    font-size: 1.5rem;
    color: #9333ea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        order: 3;
        position: static;
        left: auto;
        transform: none;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.85rem;
        padding: 0 12px;
    }

    .footer-legal-columns {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        justify-self: auto;
        position: static;
        left: auto;
        bottom: auto;
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        backdrop-filter: none;
    }

    .footer-legal-column h4 {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-copyright {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
    }

    .footer::before {
        position: static;
        border-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-title {
        font-size: 4.5rem;
        letter-spacing: 4px;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .home-sections {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .home-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .server-title {
        font-size: 2rem;
    }
    
    .server-grid {
        grid-template-columns: 1fr;
    }
    
    .server-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .store-title {
        font-size: 2.5rem;
    }
    
    .store-features {
        flex-direction: column;
        align-items: center;
    }
    
    .store-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .link-steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 1200px) {
    .store-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kit-contents-panel.active {
        max-height: 300px;
    }
    
    .kit-image-placeholder,
    .kit-image {
        height: 120px;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-badge, .dashboard-badge, .payment-badge, .legal-badge, .mobile-badge {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.cart-title, .dashboard-title, .payment-title, .legal-title, .mobile-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cart-subtitle, .dashboard-subtitle, .payment-subtitle, .legal-subtitle, .mobile-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 500px;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.empty-cart h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

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

.btn-secondary {
    background: rgba(147, 51, 234, 0.15);
    color: #9333ea;
    border: 1px solid rgba(147, 51, 234, 0.25);
}

.btn-secondary:hover {
    background: rgba(147, 51, 234, 0.25);
    border-color: #9333ea;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-icon {
    font-size: 1.5rem;
}

.item-details h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.item-details p {
    color: #cccccc;
    font-size: 0.9rem;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9333ea;
}

.remove-btn {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 2rem;
}

.summary-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #cccccc;
}

.summary-row.total {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

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

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

/* Dashboard Page Styles */
.dashboard-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

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

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(147, 51, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333ea;
}

.profile-name {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.profile-rank {
    color: #9333ea;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-joined {
    color: #888;
    font-size: 0.9rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333ea;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.status-icon {
    font-size: 1.2rem;
}

.status-info {
    flex: 1;
}

.status-name {
    display: block;
    color: #ffffff;
    font-weight: 600;
}

.status-desc {
    display: block;
    color: #888;
    font-size: 0.9rem;
}

.status-btn {
    background: rgba(147, 51, 234, 0.2);
    color: #9333ea;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.status-btn:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: #9333ea;
}

.purchases-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.empty-purchases {
    text-align: center;
    padding: 2rem;
}

.purchase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.purchase-name {
    color: #ffffff;
    font-weight: 600;
}

.purchase-date {
    color: #888;
    font-size: 0.9rem;
}

.purchase-price {
    color: #9333ea;
    font-weight: 600;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.15);
}

.action-item:hover {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.3);
}

.action-icon {
    font-size: 1.5rem;
}

.action-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Payment Page Styles */
.payment-section, .legal-section, .mobile-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.payment-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.security-features {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-2px);
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.security-card h3,
.security-card h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.security-card p {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.85rem;
    margin: 0;
}

.paypal-info,
.card-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.paypal-info h4,
.card-info h4 {
    color: #9333ea;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.paypal-info p,
.card-info p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

#paypal-button-container {
    margin-top: 1.5rem;
    min-height: 150px;
}

.payment-methods {
    text-align: center;
}

.payment-methods h3 {
    color: #ffffff;
    margin-bottom: 2rem;
}

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

.method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-item:hover,
.method-item.active {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

.method-item.active {
    border-color: #9333ea;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.method-icon {
    font-size: 1.5rem;
}

.payment-form {
    display: none;
}

.payment-form.active {
    display: block;
}

.paynow-info {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.paynow-logo h4 {
    color: #9333ea;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.paynow-logo p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.paynow-btn {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.paynow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding-top: 0.5rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.checkout-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.checkout-form h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.checkout-summary {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9333ea;
}

.pay-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

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

.terms-note {
    text-align: center;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.terms-note a {
    color: #9333ea;
    text-decoration: none;
}

.terms-note a:hover {
    text-decoration: underline;
}

/* Legal Page Styles */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.legal-card h2 {
    color: #9333ea;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.legal-card p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-card ul {
    color: #cccccc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

/* Mobile App Page Styles */
.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.app-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.app-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #9333ea;
}

.app-status {
    font-size: 0.9rem;
    color: #22c55e;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.app-card .card-icon {
    font-size: 1.5rem;
}

.app-card .card-text h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.app-card .card-text p {
    color: #cccccc;
    font-size: 0.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.5;
}

.download-section {
    text-align: center;
}

.download-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.download-section p {
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    opacity: 0.5;
    cursor: not-allowed;
}

.download-btn.disabled {
    opacity: 0.5;
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    color: #cccccc;
    font-size: 0.9rem;
}

.btn-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.notify-form {
    max-width: 400px;
    margin: 0 auto;
}

.notify-form h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.notify-form .form-group {
    display: flex;
    gap: 1rem;
}

.notify-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 6px;
    color: #ffffff;
}

.notify-form button {
    background: #9333ea;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: #7c3aed;
}

/* Payment Success Page Styles */
.payment-success-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.success-details {
    margin: 2rem 0;
}

.detail-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-card h3 {
    color: #9333ea;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: #cccccc;
    font-weight: 500;
}

.detail-row span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.status-paid {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.success-note {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 2rem;
}

.success-note p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .notify-form .form-group {
        flex-direction: column;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

/* ── Notification Bell ──────────────────────────────────────────────────────── */
.notif-bell { position: relative; }

.notif-bell-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    padding: 0.3rem;
    line-height: 1;
}

.notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    background: #0d0d0d;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.notif-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: #9333ea;
}

.notif-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.82rem;
}

.notif-item.unread { background: rgba(147, 51, 234, 0.06); }
.notif-item-msg { color: #e0e0e0; margin-bottom: 0.2rem; }
.notif-item-time { color: #666; font-size: 0.75rem; }

/* ── Admin Panel ────────────────────────────────────────────────────────────── */
.admin-login-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(147,51,234,0.2);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-icon { font-size: 3rem; margin-bottom: 1rem; }
.admin-login-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.admin-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.admin-header { text-align: center; margin-bottom: 2.5rem; }
.admin-badge {
    display: inline-block;
    background: rgba(147,51,234,0.15);
    border: 1px solid rgba(147,51,234,0.4);
    color: #9333ea;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.admin-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.admin-subtitle { color: #888; }

.admin-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(147,51,234,0.15);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.stat-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.stat-value { font-size: 1.8rem; font-weight: 800; color: #9333ea; }
.stat-label { font-size: 0.8rem; color: #888; margin-top: 0.25rem; }

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(147,51,234,0.2);
    padding-bottom: 0;
}

.admin-tab {
    background: none;
    border: none;
    color: #888;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    margin-bottom: -1px;
}

.admin-tab:hover { color: #fff; }
.admin-tab.active { color: #9333ea; border-bottom-color: #9333ea; }

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

.admin-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(147,51,234,0.15);
    border-radius: 12px;
    padding: 1.5rem;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.admin-card-header h3 { font-size: 1rem; font-weight: 600; }

.admin-form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.admin-form-row .form-group { flex: 1; min-width: 150px; }

.admin-select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(147,51,234,0.3);
    border-radius: 8px;
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
}

.admin-btn {
    background: rgba(147,51,234,0.15);
    border: 1px solid rgba(147,51,234,0.4);
    color: #9333ea;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.admin-btn:hover { background: rgba(147,51,234,0.25); }
.admin-btn.primary { background: #9333ea; color: #fff; border-color: #9333ea; }
.admin-btn.primary:hover { background: #7c3aed; }
.admin-btn.danger { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.4); color: #ef4444; }
.admin-btn.danger:hover { background: rgba(239,68,68,0.25); }
.admin-btn.sm { padding: 0.35rem 0.75rem; font-size: 0.78rem; }

.admin-search { margin-bottom: 1rem; }
.admin-search input { width: 100%; }

.admin-table-wrap { overflow-x: auto; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.admin-table th {
    text-align: left;
    padding: 0.6rem 0.75rem;
    color: #9333ea;
    font-weight: 600;
    border-bottom: 1px solid rgba(147,51,234,0.2);
    white-space: nowrap;
}

.admin-table td {
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: #ccc;
    vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.admin-tag {
    background: rgba(147,51,234,0.1);
    border: 1px solid rgba(147,51,234,0.2);
    color: #c084fc;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.admin-link { color: #60a5fa; text-decoration: none; }
.admin-link:hover { text-decoration: underline; }

.admin-badge-status {
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-badge-status.verified { background: rgba(34,197,94,0.15); color: #22c55e; }
.admin-badge-status.pending  { background: rgba(251,191,36,0.15); color: #fbbf24; }

@media (max-width: 768px) {
    .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
    .admin-tabs { flex-wrap: wrap; }
}

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

.cart-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid #9333ea;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.3);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.cart-icon-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 1.2rem;
}

.cart-header h2 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.cart-header p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.cart-close {
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cart-items {
    padding: 1rem 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #9333ea;
}

.cart-item-info h4 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.1rem;
}

.cart-item-info p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.cart-item-price {
    color: #9333ea;
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.cart-gift-section {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.gift-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.gift-dropdown {
    background: none;
    border: none;
    color: #888;
    margin-left: auto;
    cursor: pointer;
}

.cart-summary {
    padding: 1rem 1.5rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-row span:first-child {
    color: #888;
}

.summary-row span:last-child {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.tax-note {
    color: #666;
    font-size: 0.8rem;
    margin: 0.5rem 0 0 0;
}

.cart-actions {
    padding: 1.5rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cart-bottom-actions {
    display: flex;
    gap: 1rem;
}

.continue-shopping, .clear-cart {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid #333;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping:hover {
    background: rgba(255, 255, 255, 0.2);
}

.clear-cart:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #888;
}

.empty-cart-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}