/* RMGames - Light Theme Stylesheet */

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.loader-logo {
    display: block;
    height: 200px;
    width: auto;
    max-width: 520px;
    margin: 0 auto 2rem;
    object-fit: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #dc0a0a;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #dc0a0a;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #a00808;
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #2c3e50;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

.loader-text {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-progress {
    width: 250px;
    height: 4px;
    background: #e9ecef;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #dc0a0a 0%, #a00808 100%);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes loading {
    0% {
        width: 0%;
        margin-left: 0%;
    }
    50% {
        width: 100%;
        margin-left: 0%;
    }
    100% {
        width: 100%;
        margin-left: 100%;
    }
}

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

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc0a0a;
    --primary-dark: #a00808;
    --secondary: #2c3e50;
    --accent: #34495e;
    --gray: #6c757d;
    --gray-light: #95a5a6;
    --dark: #212529;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--light);
    color: var(--dark);
    padding: 0.8rem 0;
    border-bottom: 2px solid var(--primary);
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.top-bar-item a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-item a:hover {
    color: var(--primary);
}

.call-action {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navbar logosu - yüksek öncelik */
.navbar .logo img,
.nav-container .logo img {
    display: block !important;
    height: 40px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(220, 10, 10, 0.02) 20px,
        rgba(220, 10, 10, 0.02) 40px
    );
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin-top: 4rem;
}

.stat-box {
    background: var(--white);
    border: 2px solid var(--primary);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Section */
.section {
    padding: 6rem 2rem;
    position: relative;
}

.section-light {
    background: var(--light);
}

.section-white {
    background: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.about-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    min-height: 400px;
}

.award-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
    box-shadow: 0 10px 40px var(--shadow);
}

.award-badge span {
    color: var(--white);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}

.award-year {
    font-size: 3rem;
}

.award-text {
    font-size: 1.2rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 2px 10px var(--shadow);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Son satırda tek kalan kartı ortala (örn. 7 veya 10 oyun) */
.games-grid .game-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.game-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--shadow);
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(220, 10, 10, 0.2);
}

.game-content {
    padding: 2.5rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.game-title {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 900;
    text-transform: uppercase;
}

.game-category {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.game-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.game-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.game-info-item {
    text-align: center;
}

.game-info-label {
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.game-info-value {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: var(--light);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s;
    background: #e9ecef;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 2px 10px var(--shadow);
}

.review-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow);
}

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

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.review-info h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.review-role {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
}

/* Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Son satırda tek kalan uzmanlık kartını ortala */
.expertise-grid .expertise-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

.expertise-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.expertise-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.expertise-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.expertise-title {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.expertise-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.expertise-tag {
    background: var(--white);
    color: var(--dark);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.expertise-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--dark);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 10, 10, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px var(--shadow);
}

.contact-item h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--light);
    border-top: 3px solid var(--primary);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-section p,
.footer-section li {
    color: var(--gray);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 5px;
    color: var(--dark);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: 5px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    color: var(--gray);
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .games-grid .game-card:last-child:nth-child(3n+1) {
        grid-column: auto;
    }
    .games-grid .game-card:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
        box-shadow: 0 10px 30px var(--shadow);
        border-top: 2px solid var(--primary);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Loader Responsive */
    .loader-logo {
        height: 120px;
        max-width: 360px;
    }
    
    .loader-spinner {
        width: 80px;
        height: 80px;
    }
    
    .loader-text {
        font-size: 1rem;
    }
    
    .loader-progress {
        width: 200px;
    }
}

/* Sabit İletişim Widget'ları (WhatsApp üstte, Discord altta) */
.float-widgets {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.whatsapp-widget,
.discord-widget {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-widget {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.discord-widget {
    background: #5865F2;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.45);
}

.discord-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(88, 101, 242, 0.55);
    color: #fff;
}

.whatsapp-widget-icon,
.discord-widget-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-widget-icon svg,
.discord-widget-icon svg {
    display: block;
}

.whatsapp-widget-text,
.discord-widget-text {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .float-widgets {
        bottom: 1rem;
        right: 1rem;
    }
    .whatsapp-widget,
    .discord-widget {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    .whatsapp-widget-icon svg,
    .discord-widget-icon svg {
        width: 24px;
        height: 24px;
    }
}

