/*
Theme Name: PlinthHD
Theme URI: https://plinthhd.com
Author: Muhammad Umar
Author URI: https://plinthhd.com
Description: Premium Gaming Wallpaper WordPress Theme
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GPL v2 or later
Text Domain: plinthhd
*/

:root{
    --bg:#0b0b0b;
    --card:#181818;
    --primary:#4f7cff;
    --secondary:#7b61ff;
    --text:#ffffff;
    --text-light:#b5b5b5;
    --radius:16px;
    --transition:.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}
.main-menu{
    display:flex;
    gap:30px;
    list-style:none;
}

.main-menu li{
    list-style:none;
}

.main-menu a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.main-menu a:hover{
    color:#4f7cff;
}