<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Stylesheets/Clash_Royale_Tournaments/Clash_Royale_Tournaments.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&amp;family=Roboto:wght@400;500&amp;display=swap');
/* Font Awesome might be needed for list icons if you decide to use them */
/* @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css'); */

:root {
    --primary-color: #3498db; /* Blue */
    --secondary-color: #e74c3c; /* Red */
    --accent-color: #ffcc00; /* Gold for winners */
    --text-color: #e4e6eb;
    --text-muted-color: #bdc3c7;
    --background-dark: #181a1b; /* Even darker main background */
    --section-background: #1f2327; /* Dark card-like bg for sections */
    --list-item-bg: #2c333a;
    --list-item-hover-bg: #343b42;
    --border-color: #3a4148;
    --sidebar-width: 200px;
}

/* Global Reset &amp; Box Sizing */
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content Wrapper (for sidebar offset and overall page constraints) */
#home {
    width: 100%;
    flex-grow: 1;
    transition: margin-left 0.3s ease, width 0.3s ease;
    padding: clamp(20px, 4vw, 40px) clamp(10px, 3vw, 25px);
    margin: 0 auto;
    max-width: 1000px; /* Max width for the content area */
}

@media screen and (min-width: 1200px) {
    #home { margin-left: var(--sidebar-width); width: calc(100% - var(--sidebar-width)); }
}
@media screen and (max-width: 1199px) {
    #home { margin-left: 0; width: 100%; }
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 40px);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2em, 5vw, 3em);
    color: var(--primary-color);
    margin-bottom: 0.3em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-header .page-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1em, 2.5vw, 1.2em);
    color: var(--text-muted-color);
}

/* Tournament Section Styling */
.tournament-section {
    background-color: var(--section-background);
    border-radius: 10px;
    padding: clamp(20px, 3.5vw, 30px);
    margin-bottom: clamp(25px, 4vw, 35px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}
.tournament-section:last-of-type {
    margin-bottom: 0;
}

.tournament-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5em, 3.5vw, 2.2em);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}
.tournament-title .tournament-date {
    display: block;
    font-size: 0.7em;
    color: var(--text-muted-color);
    font-weight: 400;
    margin-top: 5px;
}

/* Media Container (for images and videos) */
.media-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center; /* Center media if not full width */
}
.styled-image {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--primary-color); /* Adjusted border */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.25);
    display: block; /* Ensure margin auto works if width is less than container */
    margin-left: auto;
    margin-right: auto;
}
.responsive-iframe {
    width: 100%;
    max-width: 720px; /* Increased max-width */
    aspect-ratio: 16 / 9;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.25);
    display: block; /* Ensure margin auto works */
    margin-left: auto;
    margin-right: auto;
}

/* Results Styling */
.results-container {
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(0,0,0, 0.1); /* Subtle background for results area */
    border-radius: 6px;
}
.results-container h3, /* Style for H3 from original (Winners of Qualifiers) */
.results-container h4 {  /* Style for "Results:", "Top Finishers:" */
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1em, 2.8vw, 1.4em);
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 15px;
    background-color: var(--secondary-color); /* Red as in original for H3 */
    color: var(--background-dark); /* Dark text on red */
    border-radius: 6px;
    box-shadow: 0 3px 6px rgba(231, 76, 60, 0.3);
    display: inline-block; /* So it doesn't take full width */
    position: relative;
    left: 50%; /* Centering for inline-block */
    transform: translateX(-50%);
    letter-spacing: 0.5px;
}
/* Removing triangle for H3/H4 in this context for cleaner look, can be added back */
/* .results-container h3::after, .results-container h4::after { content: none; } */

.results-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.results-list li {
    font-size: clamp(0.9em, 2.2vw, 1.05em);
    color: var(--text-muted-color);
    background-color: var(--list-item-bg);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.15s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap on small screens */
    align-items: baseline;
    line-height: 1.5;
}
.results-list li:hover {
    background-color: var(--list-item-hover-bg);
    transform: translateX(3px); /* Slight indent on hover */
}

.rank { /* New class for rank prefix */
    margin-right: 0.7em;
    flex-shrink: 0;
    color: var(--text-light); /* Brighter rank */
    font-weight: 500;
}
.player-name {
    font-weight: 500; /* Slightly bolder player names */
    color: var(--text-light);
    margin-right: 0.5em;
}
.clan-name, .prize-details, .extra-details {
    font-size: 0.9em;
    font-style: italic;
    margin-left: 0.3em;
    margin-right: 0.5em;
    font-weight: 400; /* Normal weight for these details */
}
.clan-name { color: #95a5a6; } /* Muted cyan/grey */
.prize-details { color: var(--primary-color); } /* Theme blue */
.extra-details { color: #7f8c8d; } /* Darker muted grey */

/* Top 3 Highlighting */
.results-list li:first-child,
.results-list li:nth-child(2),
.results-list li:nth-child(3) {
    font-weight: 700; /* Bolder for entire top 3 line item */
}
.results-list li:first-child { color: var(--accent-color); /* Gold */ border-left: 4px solid var(--accent-color); }
.results-list li:nth-child(2) { color: #silver; border-left: 4px solid #silver; }
.results-list li:nth-child(3) { color: #cd7f32; /* Bronze */ border-left: 4px solid #cd7f32; }

.results-list li:first-child .player-name, /* Ensure player name is distinctly styled for top 3 */
.results-list li:nth-child(2) .player-name,
.results-list li:nth-child(3) .player-name {
    color: inherit; /* Inherit gold/silver/bronze color */
}

/* Emojis - using flex to push to the right */
.results-list li:first-child::after { content: 'ðŸ†'; margin-left: auto; padding-left: 10px; }
.results-list li:nth-child(2)::after { content: 'ðŸ¥ˆ'; margin-left: auto; padding-left: 10px; }
.results-list li:nth-child(3)::after { content: 'ðŸ¥‰'; margin-left: auto; padding-left: 10px; }


/* Footer Styling */
.page-footer {
    text-align: center;
    padding: clamp(20px, 3vw, 30px) var(--section-padding-horizontal);
    color: var(--text-muted-color);
    border-top: 1px solid var(--border-color);
    margin-top: clamp(25px, 4vw, 40px);
}
.footer-copyright { font-size: 0.9em; margin-bottom: 10px; }
.back-to-top-button {
    display: inline-block; background-color: var(--primary-color);
    color: var(--background-dark); padding: 8px 15px; border-radius: 4px;
    text-decoration: none; font-size: 0.9em; font-weight: 500;
    transition: background-color 0.2s ease;
}
.back-to-top-button:hover { background-color: #2980b9; /* Darker blue */ }
.back-to-top-button i { margin-right: 5px; }


/* Donate Popup Modal specific styles from Donate_Popup.css integrated and adapted */
.modal.donate-popup .modal-content { /* Targeting donate popup specifically */
    background-color: var(--section-background);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: clamp(20px, 4vw, 30px);
    max-width: 550px; /* Narrower for donate popups */
    text-align: center;
}
.modal.donate-popup h2 {
    color: var(--primary-color);
    font-size: clamp(1.5em, 3.5vw, 2em);
    margin-bottom: 15px;
}
.modal.donate-popup p {
    color: var(--text-muted-color);
    font-size: clamp(0.9em, 2vw, 1em);
    margin-bottom: 20px;
}
.modal.donate-popup #donate-button-container { /* Assuming this ID wraps the PayPal button */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.modal.donate-popup #paypal-donate-button-popup { /* Container for PayPal's button */
    min-height: 40px; /* Ensure space for PayPal's button rendering */
}
.modal.donate-popup .close-button { /* Shared close button styling */
    color: var(--text-muted-color);
    font-size: 1.8rem; /* Adjusted size for popup close */
    /* position, top, right usually set in global modal styles or inline in HTML if unique */
}
.modal.donate-popup .close-button:hover {
    color: var(--text-color);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 { font-size: clamp(1.8em, 5vw, 2.5em); }
    .page-header .page-subtitle { font-size: clamp(0.9em, 2.2vw, 1.1em); }
    .tournament-title { font-size: clamp(1.3em, 3vw, 1.8em); }
    .results-container h3, .results-container h4 { font-size: clamp(1em, 2.5vw, 1.2em); padding: 8px 12px; }
    .results-list li { font-size: clamp(0.85em, 2vw, 0.95em); padding: 8px 12px; }
    .clan-name, .prize-details, .extra-details { font-size: 0.85em; }

    .responsive-iframe { max-width: 100%; } /* Ensure iframes don't overflow on mobile */
}
@media (max-width: 480px) {
    .results-list li { flex-direction: column; align-items: flex-start; } /* Stack li content */
    .rank, .player-name, .clan-name, .prize-details, .extra-details { margin-left: 0; margin-right: 0; display: block; width: 100%;}
    .results-list li::after { /* Adjust emoji position on mobile if needed */
        align-self: flex-end; /* Push to end of stacked line */
        margin-top: 5px;
    }
}</pre></body></html>