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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1e1e3f 25%, #2a2a5c 50%, #1e1e3f 75%, #0f0f23 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.14) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(74, 158, 255, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(0, 214, 143, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* Tap Container */
.tap-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: slideInFromTop 0.8s ease;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6C5CE7 0%, #4A9EFF 60%, #00D68F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 
        0 15px 35px rgba(108, 92, 231, 0.45),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.profile-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6C5CE7, #4A9EFF, #00D68F, #6C5CE7);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.profile-avatar i {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #6C5CE7 0%, #4A9EFF 50%, #00D68F 100%);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(108, 92, 231, 0.5);
}

.profile-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Mobile Browser Instruction */
.mobile-instruction {
    display: none;
    background: rgba(74, 158, 255, 0.15);
    border: 1px solid rgba(74, 158, 255, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    margin: 0 auto 30px;
    max-width: 350px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: slideInFromTop 0.8s ease 0.3s both;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-instruction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(74, 158, 255, 0.05));
    opacity: 0.8;
    z-index: 1;
}

.mobile-instruction i {
    color: #4A9EFF;
    font-size: 1.2rem;
    margin-right: 8px;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
}

.mobile-instruction p {
    display: inline-block;
    font-size: 0.95rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    vertical-align: middle;
    line-height: 1.4;
}

/* Section Labels */
.section-label {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6C5CE7, #4A9EFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #6C5CE7, #00D68F);
    border-radius: 2px;
}

/* Links Section */
.links-section {
    margin-bottom: 40px;
}

#casino-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.casino-link {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: 120px;
}

.casino-link.has-logo {
    background-blend-mode: multiply;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: local !important;
}

/* Alternative sizing for logos that don't fit well with cover */
.casino-link.has-logo.contain-logo {
    background-size: contain !important;
    background-color: rgba(15, 15, 35, 0.9);
}

/* For SVG logos or logos with transparency */
.casino-link.has-logo.transparent-logo {
    background-size: 80% !important;
    background-color: rgba(15, 15, 35, 0.7);
}

.casino-link.has-logo.transparent-logo .casino-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
}

.casino-link.has-logo.contain-logo .casino-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.casino-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
    padding: 20px 24px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 120px;
    box-sizing: border-box;
}

.casino-link.has-logo .casino-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.55) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
}

.casino-link:hover .casino-overlay {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.25) 0%, 
        rgba(74, 158, 255, 0.15) 50%, 
        rgba(108, 92, 231, 0.25) 100%);
}

.casino-link.has-logo:hover .casino-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(108, 92, 231, 0.3) 50%, 
        rgba(0, 0, 0, 0.5) 100%);
}

.casino-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.35), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.casino-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00D68F;
    border-radius: 50%;
    box-shadow: 0 0 10px #00D68F;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

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

.casino-link:hover::after {
    opacity: 1;
}

.casino-link:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(108, 92, 231, 0.35),
        0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(108, 92, 231, 0.6);
}

.casino-link:active {
    transform: translateY(-2px) scale(1.01);
}

.casino-link-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.casino-info {
    flex: 1;
    min-width: 0;
}

.casino-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.casino-info p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.casino-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.35), rgba(74, 158, 255, 0.35));
    border-radius: 16px;
    border: 2px solid rgba(108, 92, 231, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.casino-icon i {
    font-size: 2.5rem;
    color: #8B7DF0;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
}

.casino-link:hover .casino-icon {
    transform: scale(1.05);
    border-color: #6C5CE7;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.55), rgba(74, 158, 255, 0.55));
}

.casino-link:hover .casino-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.6));
    color: #A79BF5;
}

.casino-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
    padding: 8px;
}

/* Casino Badge Styles */
.casino-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #00D68F;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.casino-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
    border-radius: 8px;
    z-index: -1;
    animation: badgeShimmer 3s ease-in-out infinite;
}

.casino-link:hover .casino-badge {
    transform: scale(1.05);
    box-shadow: 
        0 6px 18px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Casino Promo Codes */
.casino-promos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.casino-promo-code {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.3) 0%, rgba(0, 214, 143, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 214, 143, 0.5);
    border-radius: 10px;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 70px;
    z-index: 10;
}

.casino-promo-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-promo-code:hover::before {
    opacity: 1;
}

.casino-promo-code:hover {
    transform: scale(1.05);
    box-shadow: 
        0 4px 12px rgba(0, 214, 143, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.3);
    border-color: #00D68F;
}

.promo-code-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00D68F;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #00D68F, #4DE8B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 8px rgba(0, 214, 143, 0.5);
    flex: 1;
    white-space: nowrap;
}

.casino-promo-code i {
    font-size: 0.7rem;
}

.casino-promo-code:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* Promo Section */
.promo-section {
    margin-bottom: 40px;
}

#promo-codes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-code {
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.2) 0%, rgba(0, 214, 143, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 214, 143, 0.4);
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.promo-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 214, 143, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-code:hover::before {
    opacity: 1;
}

.promo-code:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(0, 214, 143, 0.3),
        0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: #00D68F;
}

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

.promo-code-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #00D68F;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #00D68F, #4DE8B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 214, 143, 0.5);
}

.copy-icon {
    font-size: 1.1rem;
    color: #a0a0a0;
    transition: all 0.3s ease;
}

.promo-code:hover .copy-icon {
    color: #00D68F;
    transform: scale(1.1);
}

.promo-description {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
    margin-bottom: 5px;
}

.promo-site {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* Social Section */
.social-section {
    margin-bottom: 30px;
}

#social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: block;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15) 0%, rgba(74, 158, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 16px;
    padding: 18px 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(74, 158, 255, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.2);
    border-color: #4A9EFF;
}

.social-link-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.social-info p {
    font-size: 0.9rem;
    color: #c0c0c0;
}

.social-icon {
    font-size: 1.5rem;
    color: #4A9EFF;
    text-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

/* Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes modalIconPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Responsive */
@media (max-width: 768px) {
    /* Show mobile instruction on tablets and mobile devices */
    .mobile-instruction {
        display: block;
    }
    
    /* iOS Safari specific fixes */
    .mobile-instruction {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* iOS Safari specific styles */
@supports (-webkit-touch-callout: none) {
    .mobile-instruction {
        background: rgba(74, 158, 255, 0.2) !important;
        border: 2px solid rgba(74, 158, 255, 0.5) !important;
    }
    
    .mobile-instruction p {
        color: #ffffff !important;
        font-weight: 600 !important;
    }
    
    .mobile-instruction i {
        color: #66B2FF !important;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .tap-container {
        max-width: 100%;
    }
    
    /* Show mobile instruction on mobile devices */
    .mobile-instruction {
        display: block;
        background: rgba(74, 158, 255, 0.25);
        border: 2px solid rgba(74, 158, 255, 0.6);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
    
    .mobile-instruction p {
        font-size: 0.9rem;
        color: #ffffff;
        font-weight: 600;
    }
    
    .mobile-instruction i {
        color: #66B2FF;
        font-size: 1.1rem;
    }
    
    .profile-avatar {
        width: 85px;
        height: 85px;
    }
    
    .profile-avatar i {
        font-size: 2.2rem;
    }
    
    .profile-title {
        font-size: 1.8rem;
    }
    
    .casino-link {
        min-height: 100px;
        margin-bottom: 12px;
    }
    
    .casino-overlay {
        padding: 16px 18px;
        min-height: 100px;
    }
    
    .casino-link.has-logo.transparent-logo {
        background-size: 70% !important;
    }
    
    .casino-badge {
        top: 8px;
        right: 8px;
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .casino-promos {
        gap: 10px;
        margin-top: 12px;
    }
    
    .casino-promo-code {
        padding: 8px 12px;
        font-size: 0.9rem;
        min-width: 80px;
        gap: 6px;
        border-radius: 12px;
    }
    
    .promo-code-text {
        font-size: 0.9rem;
    }
    
    .casino-promo-code i {
        font-size: 0.8rem;
    }
    
    .casino-link, .social-link {
        margin-bottom: 12px;
    }
    
    .casino-link-content {
        gap: 12px;
    }
    
    .casino-icon {
        width: 60px;
        height: 60px;
    }
    
    .casino-icon i {
        font-size: 2rem;
    }
    
    .casino-info h3 {
        font-size: 1.2rem;
    }
    
    .casino-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    /* Show mobile instruction on small mobile devices */
    .mobile-instruction {
        display: block;
        padding: 14px 18px;
        margin-bottom: 15px;
        background: rgba(74, 158, 255, 0.3);
        border: 2px solid rgba(74, 158, 255, 0.7);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-instruction p {
        font-size: 0.85rem;
        color: #ffffff;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .mobile-instruction i {
        color: #66B2FF;
        font-size: 1rem;
        margin-right: 6px;
    }
    
    .casino-link {
        min-height: 90px;
        margin-bottom: 10px;
    }
    
    .casino-overlay {
        padding: 14px 16px;
        min-height: 90px;
    }
    
    .casino-link.has-logo.transparent-logo {
        background-size: 65% !important;
    }
    
    .casino-badge {
        top: 6px;
        right: 6px;
        font-size: 0.65rem;
        padding: 2px 5px;
    }
    
    .casino-promos {
        gap: 8px;
        margin-top: 10px;
    }
    
    .casino-promo-code {
        padding: 7px 10px;
        font-size: 0.85rem;
        min-width: 75px;
        gap: 5px;
        border-radius: 11px;
    }
    
    .promo-code-text {
        font-size: 0.85rem;
    }
    
    .casino-promo-code i {
        font-size: 0.75rem;
    }
    
    .casino-link, .social-link {
        margin-bottom: 10px;
    }
    
    .casino-link-content {
        gap: 10px;
    }
    
    .casino-icon {
        width: 50px;
        height: 50px;
    }
    
    .casino-icon i {
        font-size: 1.8rem;
    }
    
    .casino-info h3 {
        font-size: 1.1rem;
    }
    
    .casino-info p {
        font-size: 0.85rem;
    }
    
    .profile-avatar {
        width: 75px;
        height: 75px;
    }
    
    .profile-title {
        font-size: 1.6rem;
    }
}

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

.modal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.modal-content.success {
    border-color: rgba(34, 197, 94, 0.6);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.5), transparent, rgba(34, 197, 94, 0.5));
    border-radius: 20px;
    z-index: -1;
}

.modal-content i {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    animation: modalIconPulse 0.6s ease;
}

.modal-content p {
    font-size: 1.15rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

.casino-promo-code i {
    font-size: 0.5rem;
}

/* Useful Links Section */
.useful-section {
    margin-bottom: 25px;
}

.useful-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.useful-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 35, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

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

.useful-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(74, 158, 255, 0.4);
}

.useful-link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6C5CE7, #4A9EFF);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.35);
}

.useful-link-icon i {
    font-size: 1.5rem;
    color: white;
}

.useful-link-content {
    flex: 1;
}

.useful-link-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.useful-link-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.useful-link-arrow {
    margin-left: 15px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.useful-link:hover .useful-link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.useful-link-arrow i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile styles for useful links */
@media (max-width: 480px) {
    .useful-link {
        padding: 15px;
    }
    
    .useful-link-icon {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .useful-link-icon i {
        font-size: 1.3rem;
    }
    
    .useful-link-content h4 {
        font-size: 1rem;
    }
    
    .useful-link-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .useful-link {
        padding: 12px;
    }
    
    .useful-link-icon {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    
    .useful-link-icon i {
        font-size: 1.2rem;
    }
    
    .useful-link-content h4 {
        font-size: 0.95rem;
    }
    
    .useful-link-content p {
        font-size: 0.8rem;
    }
}
