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

:root {
    /* Color Palette */
    --color-bg-body: #121212;
    --color-bg-card: #1e1e24;
    --color-bg-dark: #0a0a0a;
    
    --color-primary: #f5a623; /* Gold/Amber */
    --color-primary-dark: #d48806;
    --color-accent: #e74c3c; /* Red */
    --color-accent-hover: #c0392b;
    
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-border: #333333;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --fs-base: 1rem;
    --fs-h1: clamp(1.75rem, 4vw, 2.5rem);
    --fs-h2: clamp(1.5rem, 3vw, 2rem);
    --lh-base: 1.6;

    /* Spacing & Layout */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Effects */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 15px rgba(245, 166, 35, 0.4);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    font-family: var(--font-family);
    line-height: var(--lh-base);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Links Global */
a {
    text-decoration: none;
    color: var(--color-primary);
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

/* Header Styles */
header {
    background: var(--color-bg-dark);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.men1 a {
    display: block;
    width: 12rem;
    height: 4rem;
    background-image: linear-gradient(45deg, var(--color-primary), var(--color-accent)); /* Placeholder for Logo */
    background-size: cover;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.men1 a::after {
    content: 'LOGO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Mobile Header / Navigation */
header.mob {
    background: var(--color-bg-card);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 0;
}

header.mob .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.menn {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.men3, .men4 {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
}

.men3 {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.men3:hover {
    background: var(--color-primary);
    color: #000;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.men4 {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    color: #fff;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.men4:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.5);
}

/* Hero Section */
.joyl-slide {
    position: relative;
    min-height: 20rem;
    background: linear-gradient(to bottom, #2c3e50, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    border-bottom: 2px solid var(--color-primary);
}

.joyl-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
}

.jou-abs {
    position: relative;
    z-index: 2;
    width: 100%;
}

.main1 {
    width: 100%;
    height: 100%;
    /* Placeholder styling for slider/banner */
}

/* Main Content Typography & Layout */
.main {
    padding-bottom: var(--spacing-lg);
}

h1 {
    font-size: var(--fs-h1);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    border-left: 4px solid var(--color-accent);
    padding-left: var(--spacing-sm);
}

h2 {
    font-size: var(--fs-h2);
    color: var(--color-text-main);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
    text-align: justify;
}

ol, ul {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}

ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

strong, em {
    color: var(--color-text-main);
}

/* Main Flex Layout Wrapper */
div[style*="display:flex"] {
    display: flex !important;
    flex-direction: row;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Left Content Column */
.joy-left, .main-left {
    flex: 3;
    background: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* Sidebar / Right Column */
.main-right {
    flex: 1;
    min-width: 18rem;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    height: fit-content;
    border: 1px solid var(--color-border);
}

.main-right a.href {
    display: block;
    width: 100%;
    min-height: 250px;
    background-color: #000;
    border-radius: var(--radius-sm);
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="64" height="64" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414 0l5.95-5.95L45.95 6.636 40 12.586 34.05 6.636l-1.414 1.414 5.95 5.95-5.95 5.95 1.414 1.414 5.95-5.95 5.95 5.95 1.414-1.414-5.95-5.95zM40 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9 42c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm0 14c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6zM41 42c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8zm0 14c-3.314 0-6-2.686-6-6s2.686-6 6-6 6 2.686 6 6-2.686 6-6 6zM17 54h32v-2H17v2zM17 12h32v-2H17v2z" fill="%23333" fill-rule="nonzero"/%3E%3C/svg%3E');
    opacity: 0.6;
    transition: var(--transition);
}

.main-right a.href:hover {
    opacity: 1;
    box-shadow: var(--shadow-glow);
}

/* Call to Action Button */
.btn-box {
    text-align: center;
    margin: var(--spacing-md) 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff !important;
    text-transform: uppercase;
    background: linear-gradient(90deg, #d32f2f, #ff6b6b);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #d32f2f);
    z-index: -1;
    transition: opacity 0.3s linear;
    opacity: 0;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: scale(0.98);
}

/* Footer */
footer {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-md) 0;
    border-top: 2px solid var(--color-primary-dark);
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.menu-fo {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Scroller / Back to Top */
#scroller {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
    opacity: 0.8;
}

#scroller:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.b-top-but {
    font-size: 0; /* Hide text, use icon logic usually, but keep simple here */
}

#scroller::after {
    content: '▲';
    font-size: 1.2rem;
    color: #000;
}

/* Form Elements (Implicit styling if forms appear) */
input[type="text"], 
input[type="email"], 
input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    background: #2a2a30;
    border: 1px solid #444;
    border-radius: var(--radius-sm);
    color: #fff;
    margin-bottom: 1rem;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    div[style*="display:flex"] {
        flex-direction: column !important;
    }
    
    .main-right {
        order: -1; /* Sidebar on top on tablets? Or bottom: order: 2 */
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    header.mob .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .men1 a {
        width: 100%;
        height: 3.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .menn {
        justify-content: space-between;
        width: 100%;
    }
    
    .men3, .men4 {
        flex: 1;
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    /* Content adjustments */
    .joy-left, .main-left, .main-right {
        padding: var(--spacing-sm);
    }

    h1 {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    
    .joyl-slide {
        min-height: 12rem;
    }

    #scroller {
        right: 1rem;
        bottom: 1rem;
    }
}
