/* --- Titan Footer (Awwwards Style) --- */
.aww-v2-footer {
    background-color: #050505;
    color: #fff;
    padding: 140px 0 40px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    /* Clean, hard divider line */
    border-top: 1px solid rgba(255,255,255,0.15); 
}

.aww-v2-container {
    max-width: 1600px; /* Ultra wide container */
    margin: 0 auto;
    padding: 0 40px;
}

/* --- 1. Massive CTA Section --- */
.aww-v2-cta-section {
    margin-bottom: 160px;
    position: relative;
}

.aww-v2-cta-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.aww-v2-meta {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

/* The Huge Link */
.aww-v2-huge-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    width: fit-content;
}

.aww-v2-text {
    /* Fluid massive font: scales with screen width */
    font-size: clamp(60px, 9vw, 180px); 
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #fff;
    display: block;
    transition: color 0.4s ease;
}

/* The "Outline" Text Variant */
.aww-v2-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.3); /* Hollow text effect */
    transition: all 0.4s ease;
}

/* Hover Effect: Fill the outline */
.aww-v2-huge-link:hover .aww-v2-outline {
    color: #fff; /* Fill it white */
    -webkit-text-stroke: 0px transparent;
}

.aww-v2-huge-link:hover .aww-v2-text {
    color: #3b82f6; /* Optional: Turn top text blue */
}

/* Floating Arrow Icon */
.aww-v2-arrow-float {
    position: absolute;
    top: 50%;
    right: -140px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #3b82f6;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) scale(0); /* Hidden initially */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.aww-v2-huge-link:hover .aww-v2-arrow-float {
    transform: translateY(-50%) scale(1); /* Pop in on hover */
}

/* --- 2. Information Grid --- */
.aww-v2-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr; /* Custom widths */
    gap: 40px;
    margin-bottom: 120px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
}

.aww-v2-col-header {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.aww-v2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aww-v2-list li a {
    font-size: 20px; /* Big readable links */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: opacity 0.3s;
}

.aww-v2-list li a:hover {
    opacity: 0.6;
}

/* --- Magnetic Button --- */
.aww-v2-col-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.aww-v2-magnetic-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.aww-v2-magnetic-wrap:hover {
    border-color: #fff;
}

.aww-v2-magnetic-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
}

.aww-v2-btn-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* --- 3. Footer Anchor (Brand) --- */
.aww-v2-brand-row {
    position: relative;
}

.aww-v2-titan-logo {
    font-size: 18vw; /* Takes up full width */
    line-height: 0.75;
    font-weight: 900;
    letter-spacing: -0.06em;
    margin: 0;
    color: #111; /* Extremely subtle dark gray against black */
    user-select: none;
    text-align: center;
    transform: translateY(0px); /* Push slightly down */
}

.aww-v2-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.aww-v2-dot {
    display: inline-block;
    width: 8px; 
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .aww-v2-huge-link { pointer-events: none; } /* Disable fancy hover on mobile */
    .aww-v2-arrow-float { display: none; }
    
    .aww-v2-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 20px;
    }
    
    .aww-v2-text { font-size: 60px; }
}

@media (max-width: 600px) {
    .aww-v2-grid { grid-template-columns: 1fr; }
    .aww-v2-col-right { justify-content: flex-start; }
    
    .aww-v2-bottom-bar {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.server-status-banner{
    display: none !important;
}

.aww-v2-list{
    cursor: pointer;
}