@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Roboto:wght@400;700&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: white;
    min-height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Backgrounds */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

/* Header */
header {
    padding: 30px 50px;
    position: relative;
    z-index: 10;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out logo and profile */
    direction: ltr;
}

.logo-small-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-top-img {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

/* User Profile Section */
.user-profile-container {
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.user-status-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #ff0000; /* Red circle from screenshot */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.user-status-circle:hover {
    transform: scale(1.1);
}

.user-status-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-status-circle img.hidden {
    display: none;
}

.red-circle-placeholder {
    width: 100%;
    height: 100%;
    background-color: transparent; /* Just border */
}

/* Dropdown */
.user-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 180px;
    display: none; /* Hidden by default */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

.user-dropdown.show {
    display: block;
    animation: fadeInDown 0.2s ease forwards;
}

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

.dropdown-header {
    padding: 15px;
    background-color: #1a1a1a;
    border-bottom: 1px solid #222;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.dropdown-body {
    padding: 5px 0;
}

.dropdown-body button {
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    color: #aaa;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.dropdown-body button:hover {
    background-color: #222;
    color: #fff;
}

.dropdown-body button i {
    font-size: 1rem;
    width: 20px;
}

#logout-btn:hover {
    color: #cc0000;
}

/* Header */
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 80vh;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-20px);
}

.main-logo-container {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo-img {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    background-image: url('vidow/Vector 7.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s, filter 0.2s;
    min-width: 250px;
}

.wishlist-btn i {
    font-size: 1.4rem;
    margin-right: 12px;
}

.wishlist-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* News Section Styles */
.news-section {
    padding: 60px 10%;
    background-color: #0a0a0a; /* Dark background */
    text-align: left;
    position: relative;
    z-index: 10;
}

.news-grid-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.news-badge {
    display: inline-block;
    background-color: #333;
    color: #ccc;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-card {
    position: relative;
    background-color: #1a1a1a;
    border: 1px solid #333;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.featured-content {
    padding: 30px;
    background: linear-gradient(to top, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 100%);
}

.featured-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

.featured-content p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.5;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background-color: #cc0000;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.read-more-btn:hover {
    background-color: #ff0000;
}

.mini-platforms {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 1.1rem;
}

.side-news {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-news-item {
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.side-news-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    transition: color 0.2s;
    cursor: pointer;
}

.side-news-item h4:hover {
    color: #cc0000;
}

.side-news-item p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 0.75rem;
    color: #555;
}

/* Bottom Grid */
.news-grid-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.update-list-item {
    display: flex;
    gap: 20px;
    background-color: #111;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #222;
    transition: background-color 0.2s;
}

.update-list-item:hover {
    background-color: #1a1a1a;
}

.update-list-item img {
    width: 150px;
    height: 85px;
    object-fit: cover;
}

.update-info h5 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}

.posted-by {
    font-size: 0.8rem;
    color: #666;
}

.posted-by .author {
    color: #cc0000;
}

/* Twitter Column */
.twitter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.follow-btn {
    font-size: 0.75rem;
    color: #aaa;
    text-decoration: none;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 3px;
}

.twitter-feed-placeholder {
    background-color: #050505;
    border: 1px solid #222;
    height: 300px;
    padding: 20px;
    position: relative;
}

.tweet-line {
    position: absolute;
    right: 20px;
    top: 50px;
    bottom: 20px;
    width: 2px;
    background-color: #222;
}

/* Responsive News */
@media (max-width: 992px) {
    .news-grid-top, .news-grid-bottom {
        grid-template-columns: 1fr;
    }
}

/* Bottom Nav */
.bottom-nav {
    background-image: url('vidow/Vector 11.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 20px;
    border-top: none;
    background-color: transparent;
    position: relative;
    z-index: 20;
    margin: 20px auto 10px auto;
    width: 90%;
    max-width: 1200px;
}

.bottom-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.bottom-nav a {
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 1px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
}

.bottom-nav a:hover, .bottom-nav a.active {
    color: #b70000;
    border-bottom: 3px solid #b70000;
    padding-bottom: 2px;
}

.bottom-nav a i {
    font-size: 0.75rem;
    margin-right: 8px;
    opacity: 0.8;
}

/* News Section Styles */
.news-section {
    padding: 60px 10%;
    background-color: #0a0a0a; /* Dark background */
    text-align: left;
    position: relative;
    z-index: 10;
}

.news-grid-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.news-badge {
    display: inline-block;
    background-color: #333;
    color: #ccc;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 12px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-card {
    position: relative;
    background-color: #1a1a1a;
    border: 1px solid #333;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.featured-content {
    padding: 30px;
    background: linear-gradient(to top, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 100%);
}

.featured-content h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: white;
}

.featured-content p {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.5;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background-color: #cc0000;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.2s;
}

.read-more-btn:hover {
    background-color: #ff0000;
}

.mini-platforms {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 1.1rem;
}

.side-news {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.side-news-item {
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.side-news-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    transition: color 0.2s;
    cursor: pointer;
}

.side-news-item h4:hover {
    color: #cc0000;
}

.side-news-item p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 0.75rem;
    color: #555;
}

/* Bottom Grid */
.news-grid-bottom {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.update-list-item {
    display: flex;
    gap: 20px;
    background-color: #111;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #222;
    transition: background-color 0.2s;
}

.update-list-item:hover {
    background-color: #1a1a1a;
}

.update-list-item img {
    width: 150px;
    height: 85px;
    object-fit: cover;
}

.update-info h5 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 8px;
}

.posted-by {
    font-size: 0.8rem;
    color: #666;
}

.posted-by .author {
    color: #cc0000;
}

/* Twitter Column */
.twitter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.follow-btn {
    font-size: 0.75rem;
    color: #aaa;
    text-decoration: none;
    border: 1px solid #333;
    padding: 4px 10px;
    border-radius: 3px;
}

.twitter-feed-placeholder {
    background-color: #050505;
    border: 1px solid #222;
    height: 300px;
    padding: 20px;
    position: relative;
}

.tweet-line {
    position: absolute;
    right: 20px;
    top: 50px;
    bottom: 20px;
    width: 2px;
    background-color: #222;
}

/* Footer Styles */
.main-footer {
    background-color: #050505;
    padding: 60px 0 40px 0;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-row-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #555;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #1a1a1a;
    margin-bottom: 25px;
}

.footer-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    font-weight: 400;
}

.legal-divider {
    color: #222;
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: #cc0000;
}

/* Cookie Bar Styles */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 20px 0;
    z-index: 1000;
    border-top: 1px solid #333;
    display: none; /* Hidden by default */
}

.cookie-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.cookie-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.4;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cookie-btn-primary {
    background-color: #5865F2; /* Discord Blurple */
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.cookie-btn-primary:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

.cookie-btn-primary i {
    font-size: 1.2rem;
}

.cookie-btn-secondary {
    color: #fff;
    text-decoration: underline;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Responsive Cookie Bar */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .news-grid-top, .news-grid-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-logo-img {
        max-width: 100%;
    }
    .bottom-nav ul {
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }
    .footer-row-top {
        justify-content: center;
    }
    .footer-row-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
