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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Discord Modal Styles */
.discord-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeInModal 0.3s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.discord-modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 25, 35, 0.95) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(120, 119, 198, 0.1);
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    animation: slideInModal 0.4s ease-out;
}

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

.discord-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-close:hover {
    color: #ffffff;
}

.discord-header {
    margin-bottom: 25px;
}

.discord-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

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

.discord-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-modal-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.discord-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.discord-join-btn {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.discord-join-btn:hover::before {
    left: 100%;
}

.discord-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.discord-later-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discord-later-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .discord-modal-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .discord-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .discord-join-btn,
    .discord-later-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .discord-header h3 {
        font-size: 1.3rem;
    }
}

.flag-btn:hover {stem, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.page-container {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 20px;
    box-shadow: 
        0 0 20px rgba(120, 119, 198, 0.1),
        0 0 40px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 119, 198, 0.5), transparent);
}

h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(120, 119, 198, 0.3);
}

.container > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Language selector styles */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-dropdown {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 14px;
}

.lang-dropdown-btn:hover {
    border-color: #7877c6;
    background: rgba(15, 15, 15, 0.9);
    box-shadow: 0 4px 12px rgba(120, 119, 198, 0.2);
}

.current-flag {
    font-size: 18px;
}

.dropdown-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.lang-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 150px;
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    overflow: hidden;
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(120, 119, 198, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(120, 119, 198, 0.15);
}

.lang-option.active {
    background: rgba(120, 119, 198, 0.2);
}

.lang-option .flag {
    font-size: 16px;
}

.lang-option .lang-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.calculator-form {
    margin: 40px 0;
}

.input-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(15, 15, 15, 0.6);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

input:focus {
    outline: none;
    border-color: #7877c6;
    box-shadow: 
        0 0 0 1px #7877c6,
        0 0 10px rgba(120, 119, 198, 0.2);
    background: rgba(15, 15, 15, 0.8);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

button {
    background: linear-gradient(135deg, #7877c6 0%, #5a59a8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 15px rgba(120, 119, 198, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

button:hover::before {
    left: 100%;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(120, 119, 198, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

button:active {
    transform: translateY(0);
}

.results {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(120, 119, 198, 0.2);
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #7877c6, transparent);
}

h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.results > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.result-details {
    background: rgba(15, 15, 15, 0.4);
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
    border: 1px solid rgba(120, 119, 198, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 15px rgba(120, 119, 198, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(120, 119, 198, 0.1);
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(120, 119, 198, 0.05);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.result-item span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.result-item span:last-child {
    color: #ffffff;
    font-weight: 600;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.result-item.total {
    font-weight: bold;
    font-size: 1.3em;
    margin-top: 15px;
    border-bottom: none;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 
        0 0 10px rgba(120, 119, 198, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.result-item.total span:last-child {
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}
}

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(120, 119, 198, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(120, 119, 198, 0.1);
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.disclaimer p:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* Toggle Switch Styles */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}

.toggle-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    flex-basis: 100px;
    text-align: center;
    font-weight: 500;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 32px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 60, 60, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(120, 119, 198, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

input:checked + .slider {
    background: linear-gradient(135deg, #7877c6 0%, #5a59a8 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(120, 119, 198, 0.3);
}

input:checked + .slider:before {
    transform: translateX(32px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Rounded sliders */
.slider.round {
    border-radius: 32px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Footer Link Styles */
.footer-text a {
    color: #7877c6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-text a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(120, 119, 198, 0.5);
}

/* Small text styling */
small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Select dropdown styling */
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(15, 15, 15, 0.6);
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #7877c6;
    box-shadow: 
        0 0 0 1px #7877c6,
        0 0 20px rgba(120, 119, 198, 0.3);
    background: rgba(15, 15, 15, 0.8);
}

select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

select optgroup {
    background: #0a0a0a;
    color: #7877c6;
    font-weight: 600;
}

/* Range input styling */
input[type="range"] {
    width: 100%;
    margin: 15px 0;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, 
        rgba(120, 119, 198, 0.3) 0%, 
        rgba(120, 119, 198, 0.6) 50%, 
        rgba(120, 119, 198, 0.3) 100%);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    cursor: pointer;
    box-shadow: 
        0 0 0 2px rgba(120, 119, 198, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 0 3px rgba(120, 119, 198, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(120, 119, 198, 0.3);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    cursor: pointer;
    border: none;
    box-shadow: 
        0 0 0 2px rgba(120, 119, 198, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .lang-dropdown-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .current-flag {
        font-size: 16px;
    }
    
    .lang-dropdown-menu {
        min-width: 130px;
    }
    
    .lang-option {
        padding: 10px 14px;
    }
    
    .lang-option .flag {
        font-size: 14px;
    }
    
    .lang-option .lang-name {
        font-size: 12px;
    }
    
    body {
        padding: 10px;
    }
    
    .container {
        padding: 25px;
        border-radius: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .toggle-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-label {
        flex-basis: auto;
    }
    
    .result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .result-item span:last-child {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 20px;
    }
    
    button {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Animation for smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 15, 15, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(120, 119, 198, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 119, 198, 0.5);
}

/* Footer */
.footer {
    background: rgba(15, 15, 15, 0.6);
    border-top: 1px solid rgba(120, 119, 198, 0.2);
    padding: 40px 20px;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-social h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.footer-social .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(120, 119, 198, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 120px;
    justify-content: center;
}

.footer-social .social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(120, 119, 198, 0.6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.2);
}

.footer-social .social-link.discord:hover {
    background: rgba(88, 101, 242, 0.15);
    border-color: #5865f2;
}

.footer-social .social-link.github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.footer-social .social-link.twitter:hover {
    background: rgba(29, 155, 240, 0.15);
    border-color: #1d9bf0;
}

.footer-social .social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-social .social-link:hover svg {
    transform: scale(1.1);
}

.footer-text {
    text-align: center;
}

.footer-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .social-section {
        padding: 30px 15px;
    }
    
    .social-container h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        padding: 10px 16px;
        min-width: 100px;
        font-size: 13px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-link {
        width: 200px;
        max-width: 100%;
    }
}

/* Discord Modal Additional Styles */
.discord-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #7877c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-modal-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.discord-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.discord-join-btn {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(88, 101, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.discord-join-btn:hover::before {
    left: 100%;
}

.discord-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.discord-later-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discord-later-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .discord-modal-content {
        padding: 30px 25px;
        margin: 20px;
    }
    
    .discord-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .discord-join-btn,
    .discord-later-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .discord-header h3 {
        font-size: 1.3rem;
    }
}